c# 正则表达式

using System.Text.RegularExpressions;

public class ReadData : MonoBehaviour {

       string  t = "asa df   sad  dfg    asdf  dsfg";

       string[] split = Regex.Split(t,@"s+");

       Debug.log(split[0]);

原文地址:https://www.cnblogs.com/softimagewht/p/3863409.html