字串:
支付穿建立:1.var str = 'hello' 2. var str = new string('');不能使用陣列常用方法
字串的常用方法:
1.charat()按照索引查詢字串的內容,並返回,語法:字串.charat(需要查詢的索引),返回值,對應索引的字串,沒有就是目標空字元
2.charcodeat()對應索引位置的字元編碼,語法:字串.charcodeat(要查詢的索引),返回值,對應索引位置的字元編碼
3.substring()用來擷取字串,語法:字串.substring(擷取開始位置索引,結束位置索引),返回值:擷取出來的字元,包前不包後
4.substr()用來擷取字串,語法:字串.substr(開始索引位置,擷取多少個),返回值:擷取出來的字串
5.concat()用來拼接字串,語法:字串.concat(要拼接的字串),不改變原始陣列,返回值:新的字串
6.slice(),用來擷取字串,語法:字串(開始索引,結束索引),包前不包後,不改變原始陣列,返回值截字串
7.touppercase:字串改成大寫。tolowercase(),語法:字串.(),返回值。。。。。。。。
9.split()切割字串,語法:字串.split(用什麼進行切割),不改變原始陣列
10.replace()替換字串中的內容,語法:replace(把什麼,替換成什麼),一次只能替換乙個
字串常用方法es5:
1.indexof()查詢某乙個陣列的索引位置,語法:字串.indexof(目標字元),如果找到目標,開始第乙個位置的索引。如果麼有目標,返回-1
indexof()特定索引開始,語法:字串.ndexof(引數一目標字串,引數二索引開始
專業 潛力 學習能力
字串的常規操作
選出數字 includeint main return 0 選出aeiou等母音字母 includeint main str1 count 0 puts str1 return 0 字串從末尾開始計算 includeint main return 0 description 寫一函式,使輸入的乙個字...
字串的常規操作
name royal 1 移除 name 變數對應的值兩邊的空格,並輸出處理結果 res name.strip print res 2 判斷 name 變數對應的值是否以 ro 開頭,並輸出結果 res name.startswith ro print res 3 判斷 name 變數對應的值是否以...
python之字串常規操作
python不允許直接與其他型別的資料拼接 str1 今 天 一 共 花 了 str2 元錢 num 10print str1 str num str2 str3 str1.split 3 計算字串的長度 print len str1 擷取字串 print str1 2 5 分隔字串 print s...