当前位置:编程学习 > C#/ASP.NET >>

跪求各位大侠 字符串拆分的问题

例如  'AA BB CC DD EE' 或者是更多的字符  怎么去把拆分开后然后组合2个、3个、4个....('AA BB','AA BB CC','AA BB CC DD')不同的字符,还不能有遗漏的
--------------------编程问答-------------------- 如果只有一个空格,就拆分 
string ss = "aa bb cc dd ee";
string[] strArray = ss.Split(' ');
List<string> list = new List<string>();
string str= string.Empty;
for(int i=0;i<strArray.Length;i++)
{
    if(i==0)
    {
      str = strArray[i];
    }
    else
    {
      str= str + " " + strArray[i];
    }
    list.add(str);
}
list 就是你想要得 --------------------编程问答--------------------
using System;

namespace Test
{
    class Program
    {
        static void Main(string[] args)
        {
            string s="AA   BB   CC   DD   EE";
            string[] words=s.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);
            s = "";
            foreach (string word in words)
                Console.WriteLine(s += word + "   ");
        }
    }
}
--------------------编程问答-------------------- 关键就是用string对象的Split方法,查查MSDN吧
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,