发布网友 发布时间:2022-05-01 05:07
共1个回答
热心网友 时间:2022-06-24 16:09
string[] str = { "按分类方式1分类", "按分类方式2分类”,“ 按分类方式3分类”,“ 按分类" }; Regex r = new Regex("按分类方式\\d+分类"); string resultStr = string.Empty; for ( int i = 0; i < str.Length; i ++) { if (r.IsMatch(str[i]))