17._6正则表达式的拆分
Posted 前缘
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了17._6正则表达式的拆分相关的知识,希望对你有一定的参考价值。
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; namespace _17._6正则表达式的拆分 { class Program { static void Main(string[] args) { string input = "一、张三 二、李四 三、王五 四、找刘"; string pattern = @"\b[一二三四]、"; foreach(string outstr in Regex.Split(input, pattern)) { if(!string.IsNullOrEmpty(outstr)) Console.WriteLine(outstr); } Console.Read(); } } }
以上是关于17._6正则表达式的拆分的主要内容,如果未能解决你的问题,请参考以下文章