1、下面给你两种办法
(资料图)
2、方法一:
3、Regex reg = new Regex(@"([a-zA-Z]+)\d+([a-zA-Z]+)\d+([a-zA-Z]+)");
4、 string text = "aaa111bbb111ccc111dddd";
5、 if (reg.IsMatch(text))
6、 {
7、 GroupCollection regGroup = reg.Match(text).Groups;
8、 foreach (Group item in regGroup)
9、 {
10、 Response.Write(item.Value);
11、 Response.Write("
");
12、 }
13、 }
14、 Response.Write("..................");
15、方法二:
16、 string[] t = text.Replace("111", "|").Split("|");
17、 foreach (string item in t)
18、 {
19、 Response.Write(item);
20、 Response.Write("
");
21、 }
本文到此讲解完毕了,希望对大家有帮助。