我有一个字符串,它将有一个空格和 ( 或只是 (。我需要根据 (.) 的空格将字符串拆分为 2。
以下是示例字符串
1234(207)
1234 (207)
1234 207
以上所有场景的结果都应该是。
string1=1234
string2=(207)
我在 C# 中有一个代码
Regex r = new Regex(@"(^.*?)\s+(.*?$)");
Match m = r.Match(strAbove);
firstPart = m.Groups[1].Value;
secondPart=m.Groups[2].Value;
上述场景的正则表达式模式是什么。
提前致谢。