2010年2月7日 星期日

C# 拆字串

依照符號拆

char[] delimiterChars = { ' ', ',', '.', ':', '\t' };

string text = "one\ttwo three:four,five six seven";
System.Console.WriteLine("Original text: '{0}'", text);

string[] words = text.Split(delimiterChars);
System.Console.WriteLine("{0} words in text:", words.Length);


依照字串位置拆

word.Substring(1, 3) //從第二個字讀三個字

沒有留言:

張貼留言