摘要:
using System;using System.Text.RegularExpressions;namespace ConsoleApplication1{ class Program { static void Main(string[] args) { string oldStr = Console.ReadLine(); string pattern = @"\Ba\S*c\B"; // \B表示不是字边界的位置,这个串表示以a开头以c结尾的任意字符串。如hmabbccln中的a... 阅读全文