摘要: 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... 阅读全文
posted @ 2013-12-13 13:08 爹子王 阅读(2026) 评论(0) 推荐(0) 编辑