在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
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中的abbcc这个串 // \b表示字边界,就是以a开头以c结尾的单词。如I know abc中的abc这个单词 // \S表示任何不是空白的字符。\s表示任何空白字符。
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论