当前位置: 代码迷 >> Delphi >> 字符串 分割有关问题
  详细解决方案

字符串 分割有关问题

热度:1084   发布时间:2013-02-25 00:00:00.0
字符串 分割问题
string a="user name xctc.com";


如何将a 分成 “user name” 跟 “xctc.com”两部分? user name 中间有空格

------解决方案--------------------------------------------------------
string a = "user name xctc.com";
Regex re = new Regex(@"(?<first>.*?)(\w+\.com)", RegexOptions.None);
Match mc = re.Match(a);
Console.WriteLine(mc.Groups[1]);
Console.WriteLine(mc.Groups[2]);
------解决方案--------------------------------------------------------
路过,学习一下
------解决方案--------------------------------------------------------
探讨
string[] ar=a.split(' ');
ar[0]+ar[1]
ar[2]
  相关解决方案