📌  相关文章
📜  c# regex 在字符串中查找数字 - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:09.139000             🧑  作者: Mango

代码示例1
//System.Text.RegularExpressions.Regex
resultString = Regex.Match(subjectString, @"\d+").Value;