8)contains():判斷字串是否包含指定的字串
string str =
"國家關鍵人物鄧煒坤";if
(str.
contains
("鄧煒坤"))
7)substring():擷取字串,在擷取的時候包含要擷取的那個位置。
string str =
"今天天氣好晴朗,處處好風光"
8)indexof 和lastindexof:判斷字串第一次、最後一次出現的位置
string str =
"今天天氣好晴朗,天天處處好風光"
;int index = str.
lastindexof
('天');
console.
writeline
(index)
; console.
readkey()
;
這個方法的返回值是int型別
9)startwith endwith:判斷字串是否以xx開頭/結尾
string str =
"今天天氣好晴朗,處處好風光";if
(str.
endswith
("風光"))
10)replace():將字串中某個字串替換成乙個新的字串
string str =
"國家關鍵人物鄧煒坤";if
(str.
contains
("鄧煒坤"))
11)contains():判斷某個字串是否包含指定的字串
12)trim():去掉字串中前後的空格
13)trimend():/trimstart():去掉字串後面、前面的空格
14)string.join():將陣列按照指定的字串連線,返回乙個字串
字串物件的各種方法
例 var str hello world var str1 wo 1 indexof 方法 用於返回某個指定的字串值在字串中首次出現的位置。alert str.indexof str1 6 2 charat 方法 用於返回指定位置的字元。alert str.charat 0 h 3 split 方...
操作字串的各種方法
一.字串查詢 方法有倆種 indexof 和lastindex indexof sting s 用於字串s首次出現的索引位置,如果沒有搜尋到s,返回值為 1 lastindex sting s 用於字串s最後一次出現的索引位置,如果沒有搜尋到s,返回值為 1 二.獲取指定位置的字元 charat i...
字串的各種方法使用
如下 示例 author hy 字串常規操作 s input 請輸入一列字串 print s.swapcase 大寫轉換成小寫,小寫轉換成大寫 print s.lower 轉換成小寫輸出 print s.upper 轉換成大寫輸出 print nalex lstrip 去掉左側的回車和空格 prin...