C# 正则表达式(1)
用于匹配输入文本的模式
string s = "this is a test!"; string res = Regex.Replace(s, "^", "start:"); Console.WriteLine(res); string res2 = Regex.Replace(s, "$", ":end"); Console.WriteLine(res2);
^表示匹配必须从字符串或一行的开头开始。
$表示匹配必须出现在字符串的末尾或出现在行或字符串末尾的 之前。
上面的代码运行后会出现如下效果: