请问C#里面System.Text.RegularExpressions.Regex.Split()要怎么用?最好有一个范例

 我来答
Degreying
2012-11-27 · TA获得超过294个赞
知道答主
回答量:168
采纳率:0%
帮助的人:116万
展开全部
Regex regex = new Regex("-"); // Split on hyphens.string[] substrings = regex.Split("plum--pear");
foreach (string match in substrings)
{
Console.WriteLine("'{0}'", match);
}
// The method writes the following to the console:// 'plum'// ''// 'pear'

string input = "characters";
Regex regex = new Regex("");
string[] substrings = regex.Split(input);
Console.Write("{");
for(int ctr = 0; ctr < substrings.Length; ctr++)
{
Console.Write(substrings[ctr]);
if (ctr < substrings.Length - 1)
Console.Write(", ");
}
Console.WriteLine("}");
// The example produces the following output: // {, c, h, a, r, a, c, t, e, r, s, }

参考资料: http://msdn.microsoft.com/zh-cn/library/ze12yx1d.aspx

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式