OS : Windows 10 x64 typesetting : Markdown code using System; using System.Text.RegularExpressions; namespace ConsoleApp { class Program { static void Main(string[] args) { // 不写@,会报错 string regularExpression = @"\w"; Regex rg = new Regex...