string s1 =
"abc"
;string s2 =
"abc"
;string s3 =
'a'+
"bc"
;//字面量連線
string ss1=
'a';
string ss2=
"bc"
;string ss=ss1+ss2;
//變數連線
string sss =
newstring
("abc");
//new關鍵字,新建物件
eg:str.length()
注意:這裡後面有小括號,而獲取陣列長度時沒有小括號。有兩種過載:
和indexof類似,不過是查詢最後乙個出現的位置。
str.lastindexof(str,index),從下標index往前查詢最後乙個出現的位置
string substring(int beginindex, int endindex)返回區間[beginindex,endindex)內的子字串,注意包含開始,不包含結束下標。
可以不寫結束下標,預設從beginindex一直到結束。
還可以這樣用:substring(x,x+n);擷取從x開始的n個字元。
若源字串前後有空格,則返回它去掉空格後的副本,若沒有則返回源字串。常用語檢查使用者無意間輸入的空格。物件建立後可以通過呼叫方法改變其封裝的字串行
stringbuilder insert(int dstoffset ,string s) 插入字串
stringbuilder delete(int start, int end) 刪除字串
stringbuilder replace(int start, int end, string str) 替換字串
stringbuilder reverse() 字串翻轉
注意:上面所有涉及到前後下標的都是前面包含,後面不包含
String類下常用API
1 定義 多個字元組成的一串資料。其實它可以和字元陣列進行相互轉換。2 構造方法 a public string b public string byte bytes c public string byte bytes,int offset,int length d public string c...
string容器常用API介面
目錄 string容器常用操作 1 string 建構函式 2 string基本賦值操作 3 string訪問字元操作 4 string拼接操作 5 string查詢和替換 6 string比較操作 7 string子串 8 string插入和刪除操作 9 string和c style字串轉換 注意...
String類及其常用方法
1.字串是一種常量物件。2.字串物件的宣告以及建立 宣告字串物件的格式 string物件。建立字串物件的方法 一.採用構造方法。new string 字串 二.也可以用乙個已建立的字串建立另乙個字串。string a new string b 三.用乙個字元陣列a建立字串物件 char a stri...