C 小技巧 by 游天居士

2021-09-26 07:51:54 字數 647 閱讀 2384

將字串拆分為子字串(如將句子拆分為各個單詞)是乙個常見的程式設計任務。split() 方法使用分隔符(如空格字元)char 陣列,並返回乙個子字串陣列。您可以使用 foreach 訪問此陣列。

示例:char delimit = new char ;

string s14 = "the cat sat on the mat.";

foreach (string substr in s14.split(delimit))  //使用空格拆分

此**將在單獨的行上輸出每個單詞,如下所示:

thecat

saton

themat.

. // statements_switch2.cs

using system;

class switchtest

static void main()

int n = 2;

switch(n)

case 1:

case 2:

case 3:

console.writeline("it's 1, 2, or 3.");

break;

default:

console.writeline("not sure what it is.");

break;

C 小技巧 by 游天居士

將字串拆分為子字串 如將句子拆分為各個單詞 是乙個常見的程式設計任務。split 方法使用分隔符 如空格字元 char 陣列,並返回乙個子字串陣列。您可以使用 foreach 訪問此陣列。示例 char delimit new char string s14 the cat sat on the m...

C 程式設計小技巧

1.乙個應用程式只能被使用者開啟一次 process mobj pro process.getcurrentprocess process mobj prolist process.getprocessesbyname mobj pro.processname if mobj prolist.len...

C 實用小技巧

系統自帶全球唯一標示id system.guid.newguid tostring 字元竄或者變數前加乙個 標示為路徑 muban.doc 複製檔案 system.io.file.copy 檔案路徑,檔案路徑 刪除檔案 system.io.file.delete 檔案路徑 結束程序 foreach ...