欧美成人精品手机在线观看_69视频国产_动漫精品第一页_日韩中文字幕网 - 日本欧美一区二区

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發(fā)文檔 其他文檔  
 
網(wǎng)站管理員

C#判斷輸入文字是否是數(shù)字

admin
2024年10月14日 17:27 本文熱度 930

 方案一:

/// <summary> 

/// 名稱:IsNumberic 

/// 功能:判斷輸入的是否是數(shù)字 

/// 參數(shù):string oText:源文本 

/// 返回值: bool true:是 false:否 

/// </summary> 

public bool IsNumberic(string oText) 

  try 

  { 

    int var1=Convert.ToInt32 (oText); 

    return true; 

  } 

  catch 

  { 

    return false; 

  } 

}

try catch方法

例:

try

{

  Convert.ToInt32("123"):

  Console.Write("是數(shù)字");

}

catch(Exception ex)

{

  Console.Write("非數(shù)字");

}

注:如果有很多字符串要求判斷,此方法需要大量的try catch 以及finally來處理后續(xù)的程序,不建議使用此方法。

改進(jìn)一下:

因?yàn)榭梢赞D(zhuǎn)int,可以轉(zhuǎn)Decimal

public bool IsNumberic(string oText)

{

  try

  {

      Decimal Number = Convert.ToDecimal (oText);

      return true;

  }

  catch

  {

      return false;

  }

}


方案二:

/// 如果是純數(shù)字還可以采用ASCII碼進(jìn)行判斷

/// <summary>   

/// 判斷是否是數(shù)字   

/// </summary>   

/// <param name="str">字符串</param>   

/// <returns>bool</returns>   

public bool IsNumeric(string str)   

{

  if (str == null || str.Length == 0)

  return false;

  System.Text.ASCIIEncoding ascii = new System.Text.ASCIIEncoding();

  byte[] bytestr = ascii.GetBytes(str);

  foreach (byte c in bytestr)

  {

    if (c < 48 || c > 57)

    {

    return false;

    }

  }

  return true;

}


方案三:
     正則表達(dá)式方法
     例:

//引用正則表達(dá)式類

using System.Text.RegularExpressions; 

Regex reg=new Regex("^[0-9]+$"); 

Match ma=reg.Match(text); 

if(ma.Success) 

  //是數(shù)字 

else 

  //不是數(shù)字 

}

     注:此方法快捷,但不太容易掌握,尤其是正則表達(dá)式公式,如果有興趣的朋友可以好好研究,這東西很好用的,建議使用。


方案四:
     Double.TryParse方法
     例:
     bool isNum=System.Double.TryParse("所要判斷的字符串"  ,System.Globalization.NumberStyles.Integer,null,out );
     注:此方法快捷,方便,很容易被掌握,但是參數(shù)很多,有興趣的朋友可以研究一下,建議使用。
    參數(shù)不好用,沒有使用過。

public static bool IsNumberic(string strnum)

{

    int i = 0;

    bool result = int.TryParse(strnum, out i);

    return result;

}


方法五:
新建一個類

/// <summary>

/// 判斷是否是數(shù)字

/// </summary>

/// <param name="strNumber">要判斷的字符串</param>

/// <returns></returns>

public static bool IsNumber(String strNumber)

{

  Regex objNotNumberPattern = new Regex("[^0-9.-]");

  Regex objTwoDotPattern = new Regex("[0-9]*[.][0-9]*[.][0-9]*");

  Regex objTwoMinusPattern = new Regex("[0-9]*[-][0-9]*[-][0-9]*");

  String strValidRealPattern = "^([-]|[.]|[-.]|[0-9])[0-9]*[.]*[0-9]+___FCKpd___0quot;;

  String strValidIntegerPattern = "^([-]|[0-9])[0-9]*___FCKpd___0quot;;

  Regex objNumberPattern = new Regex("(" + strValidRealPattern + ")|(" + strValidIntegerPattern + ")");

  return !objNotNumberPattern.IsMatch(strNumber) &&

  !objTwoDotPattern.IsMatch(strNumber) &&

  !objTwoMinusPattern.IsMatch(strNumber) &&

  objNumberPattern.IsMatch(strNumber);

}


/// <summary>

/// 判斷是否是int類型

/// </summary>

/// <param name="Value">要判斷的字符串</param>

/// <returns></returns>

public static bool IsInt(string Value)

{

  return Regex.IsMatch(Value, @"^[+-]?/d*___FCKpd___0quot;);

}


/// <summary>

/// 判斷是否是數(shù)字

/// </summary>

/// <param name="Value">要判斷的字符串</param>

/// <returns></returns>

public static bool IsNumeric(string Value)

{

    return Regex.IsMatch(Value, @"^[+-]?/d*[.]?/d*___FCKpd___0quot;);

}


相關(guān)教程:

C# 檢測文本字符串內(nèi)容是否為數(shù)字[5]
  http://26639.oa22.cn


該文章在 2024/10/14 17:43:44 編輯過
關(guān)鍵字查詢
相關(guān)文章
正在查詢...
點(diǎn)晴ERP是一款針對中小制造業(yè)的專業(yè)生產(chǎn)管理軟件系統(tǒng),系統(tǒng)成熟度和易用性得到了國內(nèi)大量中小企業(yè)的青睞。
點(diǎn)晴PMS碼頭管理系統(tǒng)主要針對港口碼頭集裝箱與散貨日常運(yùn)作、調(diào)度、堆場、車隊(duì)、財務(wù)費(fèi)用、相關(guān)報表等業(yè)務(wù)管理,結(jié)合碼頭的業(yè)務(wù)特點(diǎn),圍繞調(diào)度、堆場作業(yè)而開發(fā)的。集技術(shù)的先進(jìn)性、管理的有效性于一體,是物流碼頭及其他港口類企業(yè)的高效ERP管理信息系統(tǒng)。
點(diǎn)晴WMS倉儲管理系統(tǒng)提供了貨物產(chǎn)品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質(zhì)期管理,貨位管理,庫位管理,生產(chǎn)管理,WMS管理系統(tǒng),標(biāo)簽打印,條形碼,二維碼管理,批號管理軟件。
點(diǎn)晴免費(fèi)OA是一款軟件和通用服務(wù)都免費(fèi),不限功能、不限時間、不限用戶的免費(fèi)OA協(xié)同辦公管理系統(tǒng)。
Copyright 2010-2025 ClickSun All Rights Reserved