標題:
字串常見用法
[打印本頁]
作者:
李泳霖
時間:
2024-1-9 16:26
標題:
字串常見用法
本帖最後由 李泳霖 於 2024-1-9 16:52 編輯
[attach]17318[/attach]
//字串常見用法
System.Console.WriteLine("Hello World!");
System.Console.WriteLine("Hello\nWorld");//\n為換行
System.Console.WriteLine("\"Hello World\"");//\跳脫字元
System.Console.WriteLine("Hello" + "World");//+連接字串
string str = "Hello World!";
System.Console.WriteLine("字串長度: "+str.Length);//字串長度
System.Console.WriteLine("轉大寫: "+str.ToUpper());//轉大寫
System.Console.WriteLine("轉小寫:"+str.ToLower());//轉小寫
System.Console.WriteLine("字串是否包含Hello: "+str.Contains("Hello"));
System.Console.WriteLine("字串[1]在哪: " + str[1]);
System.Console.WriteLine("字元l在哪: "+str.IndexOf('l'));
System.Console.WriteLine("字串World在哪:" + str.IndexOf("World"));
System.Console.WriteLine("字串abc在哪: " + str.IndexOf("abc"));
System.Console.WriteLine("編號2後保留: " + str.Substring(2));
System.Console.WriteLine("編號2到編號5保留: " + str.Substring(2, 3));
複製代碼
作者:
陳品諺
時間:
2024-1-9 17:13
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2