📌  相关文章
📜  vbnet 检查字符串是否只是数字 - VBA 代码示例

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

代码示例1
If System.Text.RegularExpressions.Regex.IsMatch(MyString, "^[0-9 ]+$") Then
'String is only numbers
End If