久久久久久久视色,久久电影免费精品,中文亚洲欧美乱码在线观看,在线免费播放AV片

<center id="vfaef"><input id="vfaef"><table id="vfaef"></table></input></center>

    <p id="vfaef"><kbd id="vfaef"></kbd></p>

    
    
    <pre id="vfaef"><u id="vfaef"></u></pre>

      <thead id="vfaef"><input id="vfaef"></input></thead>

    1. 站長資訊網
      最全最豐富的資訊網站

      asp.net中利用正則表達式判斷一個字符串是否為數字的代碼

      復制代碼 代碼如下:
      publicstaticbool IsNumeric(string value)
      {
      return Regex.IsMatch(value, @”^[+-]?d*[.]?d*$”);
      }
      publicstaticbool IsInt(string value)
      {
      return Regex.IsMatch(value, @”^[+-]?d*$”);
      }
      publicstaticbool IsUnsign(string value)
      {
      return Regex.IsMatch(value, @”^d*[.]?d*$”);
      }

      贊(0)
      分享到: 更多 (0)
      網站地圖   滬ICP備18035694號-2    滬公網安備31011702889846號