我想得到字符串数据从段落,在字符串将有一个空格。
样本数据
my id is REG #22334 E112233
my name is xyz
my city is xyz
预期操作= 22334 E112233
代码
var myString= "my id is REG #22334 E112233
my name is xyz
my city is xyz";
var regex = new Regex(@"[1-3]\d{4}([ ]E\d{6})?$");
var id= regex.Match(myString).Value;
O/p = "";
1条答案
按热度按时间mwngjboj1#
由于要在行的末尾匹配
$
,因此需要使用multiline选项:输出: