C#: 使用正则表达式判断字符串是否是数值或整数

public bool IsNumber(string value) { Regex r = new Regex(@"^/d+(/.)?/d*$"); return r.IsMatch(value); } public bool IsInteger(string value) { Regex r = new Regex(@"^/d+$"); return r.IsMatch(value); }

你可能感兴趣的:(C#: 使用正则表达式判断字符串是否是数值或整数)