Unity3d c#判断字符串是否是数字或字母

兄弟姐妹们哪位知道,Unity3d c#判断字符串是否是数字或字母
最新回答
巷尾青苔

2024-04-11 11:40:11

下面程序中的IsNumeric方法判断
字符串
是否为数字

using system;using System.Text.RegularExpressions; namespace ConsoleApplication1{ class Program { static void Main(string[] args) { string s = "-123.3456"; if(IsNumeric(s)) { Console.WriteLine("{0}是数字", s); } } static bool IsNumeric(string s) { // 用
正则表达式
判断是否为数字 return Regex.IsMatch(s, @"^[+-]?\d*[.]?\d*$"); } }}