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]);

 

c# 正则表达式

你可能感兴趣的:(正则表达式)