how to use regular expression to get value from string

后端 未结 4 787
花落未央
花落未央 2021-01-13 12:53

I have this string text:

    
    ";
MatchCollection coll = Regex.Matches(input, regex);
String result = coll[0].Groups[1].Value;

提交回复
热议问题