C# 正则表达式

 用例

1             const string pattern = @"ion\b";
2             const string strMatch = "a new action and station";
3             MatchCollection Matches = Regex.Matches(strMatch, pattern);    
View Code

C# 正则表达式_第1张图片

 

你可能感兴趣的:(C# 正则表达式)