using system;
using system.collections;
using system.collections.generic;
using system.text;
else
// 從第0個位元組開始查詢空格的位置
int n = str1.indexof(' ', 0);
console.writeline("str1第乙個空格在第個位元組", n);
// 刪除第1個空格之後的所有字元
str2 = str1.remove(n);
console.writeline("刪除str1第乙個空格後的所有字元:" + str2);
// 將所有空格替換為-
str2 = str1.replace(' ', '-');
console.writeline("將str1所有空格替換為-:" + str2);
// 在第乙個空格之後插入@@@
str2 = str1.insert(n, " peach");
console.writeline("在str1第乙個空格後插入 peach:" + str2);
// 取第乙個空格後的6個字元
str2 = str1.substring(n + 1, 6);
console.writeline("取str1第乙個空格後的6個字元:" + str2);
// 以空格為識別符號,將字串分解為若干個新的字串
char chars = ;
string strs = str1.split(chars);
console.writeline("以空格為識別符號,將str1分解為:");
for (int i = 0; i < strs.length; i++)
console.writeline(i + ":" + strs[i]);
// 輸入任意鍵退出
console.readkey();}}
}
Python基礎4 字串
python字串是由數字 字母 下劃線組成的一串字元,我們可以使用引號來建立字串。如 str helloworld 在python中沒有char型別,單個字元也作為string使用 python的字串列表有2種取值順序 a.自左向右,預設索引從0開始,索引長度最長為字串長度 1 b.自右向左,預設索...
Python學習4 字串
1.python字串 python沒有字元,所有的都叫做字串,用單引號表示。2.python中字串,列表,元祖的相似性 1 訪問,都是用str i 來訪問第i 1個元素。2 切片,str i j 來擷取其中的一部分。3 拼接,若要向其中插入一部分,都要使用str i str2 str i 但是此過程...
python基礎學習6 字串操作
一.重複輸出字串 print hello 20 輸出20個hello 二.通過索引獲取字串中字元 print helloworld 2 輸出lloworld 三.關鍵字 in print ll in hello 輸出true 四.格式化輸出 print darling,i love you prin...