本文介绍了一个更有用的拆分?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想知道是否有一个简单,更有用的分割功能,它将用一个字符串分隔符分割,例如<<>"或////?

解决方案







使用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, "<>");



这篇关于一个更有用的拆分?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 07:28