C# 字串切割 和 字串轉整數

C# 字串切割 和 字串轉整數

C# 字串(String)切割函數(Split) 和 字串轉整數


 

 

字串切割:

string[] strs = StrBuf.Split(‘/’);


string[] strs = StrApiAns.Split(Environment.NewLine.ToCharArray());//使用換行符號作為切割條件

 

 

字串轉整數:intYear = Convert.ToInt32(strs[i], 10);

4 thoughts on “C# 字串切割 和 字串轉整數

  1. C# String Split 只切一次

    string input = "apple,banana,orange";
    string[] result = input.Split(new char[] { ',' }, 2);//最多只切一次,產生2個字串

    foreach (string s in result)
    {
    Console.WriteLine(s);
    }

    /*
    apple
    banana,orange
    */

發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *