问题描述
我想知道是否有一个简单,更有用的分割功能,它将用一个字符串分隔符分割,例如<<>"或////?
使用System.Text.RegularExpressions;
string strTest ="一个<> Two<><><>> ;;>
string [] astrTest = Regex.Split(strTest,"<>");
使用System.Text.RegularExpressions;
string strTest =" One<> Two<>三个<><>>;
string [] astrTest = Regex.Split(strTest,"<>");
I was wondering if there is an easy, more useful Split function that will
split with a string delimiter like "<>" or "////"?
using System.Text.RegularExpressions;
string strTest = "One<>Two<>Three<>Four<>Five";
string[] astrTest = Regex.Split(strTest, "<>");
using System.Text.RegularExpressions;
string strTest = "One<>Two<>Three<>Four<>Five";
string[] astrTest = Regex.Split(strTest, "<>");
这篇关于一个更有用的拆分?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!