發(fā)布時間:2020-11-30 10:55 作者:獨孤劍 閱讀:1178
using System; namespace DemoConsole { class Program { static void Main(string[] args) { // 初始化字符串 string str = "a;b;c;d;e;f;g;"; // 使用Split方法分割字符串餅存入數(shù)組 string[] p = str.Split(';'); for (int i = 0; i < p.Length; ++i) { Console.WriteLine (p[i]); } Console.Read(); } } }
使用Split函數(shù)的時候,只能對字符進行分割,所以用單引號Split('');
微信打賞, 微信掃一掃
支付寶打賞, 支付寶掃一掃
如果文章對您有幫助,歡迎給作者打賞