Isabella
---- I fell upon the thorn of life, I bleed.
posts - 28,  comments - 14,  trackbacks - 0
  public static bool IsNumeric(string value)
 
{
  
return Regex.IsMatch(value, @"^[+-]?\d*[.]?\d*$");
 }

 
public static bool IsInt(string value)
 
{
  
return Regex.IsMatch(value, @"^[+-]?\d*$");
 }

 
public static bool IsUnsign(string value)
 
{
  
return Regex.IsMatch(value, @"^\d*[.]?\d*$");
 }
posted on 2007-02-05 16:48 李昀璟 阅读(1216) 评论(4)  编辑 收藏