您可以使用「MatchCollection」根據事件拆分字符串。 下面的例子幾乎是你想要的。每個字符串右側的空白字符不會被刪除。
代碼:
using System;
using System.Collections.Generic;
using System.Text;
using System.Text.RegularExpressions;
namespace Q11438740ConApp
{
class Program
{
static void Main(string[] args)
{
string sourceStr = "1y 250 2y 32% 3y otherjibberish";
Regex rx = new Regex(@"\d+y");
string[] splitedArray = SplitByRegex(sourceStr, rx);
for (int i = 0; i < splitedArray.Length; i++)
{
Console.WriteLine(String.Format("'{0}'", splitedArray[i]));
}
Console.ReadLine();
}
public static string[] SplitByRegex(string input, Regex rx)
{
MatchCollection matches = rx.Matches(input);
String[] outArray = new string[matches.Count];
for (int i = 0; i < matches.Count; i++)
{
int length = 0;
if (i == matches.Count - 1)
{
length = input.Length - (matches[i].Index + matches[i].Length);
}
else
{
length = matches[i + 1].Index - (matches[i].Index + matches[i].Length);
}
outArray[i] = matches[i].Value + input.Substring(matches[i].Index + matches[i].Length, length);
}
return outArray;
}
}
}
輸出:
'1y 250 '
'2y 32% '
'3y otherjibberish'
「解決方案」 的7z文件:Q11438740ConApp.7z
還能有多個或每個'\ dy'分隔符之間小於2位(禁止第一個/最後一個)? – Servy 2012-07-11 18:17:19
是的,可以是可變的(部分是用戶輸入的,所以你不能保證有兩個空格......) – keynesiancross 2012-07-11 18:24:31