当然,我的回答不像 linq 那样迷人,但我希望发布这种old school
方法。
void Main()
{
List<string> result = new List<string>();
string inp = "USD 1.23 1.12 1.42 EUR 0.2 0.3 0.42 JPY 1.2 1.42 1.53";
while(true)
{
int pos = IndexOfN(inp, " ", 4);
if(pos != -1)
{
string part = inp.Substring(0, pos);
inp = inp.Substring(pos + 1);
result.Add(part);
}
else
{
result.Add(inp);
break;
}
}
}
int IndexOfN(string input, string sep, int count)
{
int pos = input.IndexOf(sep);
count--;
while(pos > -1 && count > 0)
{
pos = input.IndexOf(sep, pos+1);
count--;
}
return pos ;
}
编辑:如果对输入字符串上的数字没有控制(例如,如果一些钱只有 1 或 2 个值),那么就无法在输入字符串的 4 个块中正确地进行子字符串化。我们可以求助于正则表达式
List<string> result = new List<string>();
string rExp = @"[A-Z]{1,3}(\d|\s|\.)+";
// --- EUR with only two numeric values---
string inp = "USD 1.23 1.12 1.42 EUR 0.2 0.42 JPY 1.2 1.42 1.53";
Regex r = new Regex(rExp);
var m = r.Matches(inp);
foreach(Match h in m)
result.Add(h.ToString());
此模式还接受带逗号的数字作为小数分隔符和不带任何数字的货币符号(“GPB USD 1,23 1,12 1.42”
string rExp = @"[A-Z]{1,3}(,|\d|\s|\.)*";
正则表达式语言 - 快速参考