asp.net Regex字串中數文書處理

來源:互聯網
上載者:User

模式

說明

^d{5}$

5 個數值數字,如美國郵遞區號。

^(d{5})|(d{5}-d{4}$

5 個數值數字或 5 個數字-短劃線-4 個數字。匹配 5 位元字格式的美國郵遞區號,或 5 位元字 + 4 位元字格式的美國郵遞區號。

^(d{5}(-d{4})?$

與前一個相同,但更有效。使用 ? 可使模式中的 4 位元字成為可選部分,而不是要求分別比較不同的兩個模式(通過另一種方式)。

^[+-]?d+(.d+)?$

匹配任意有可選符號的實數。

^[+-]?d*.?d*$

與上一個相同,但也匹配Null 字元串。

^(20|21|22|23|[01]d)[0-5]d$

匹配 24 小時制時間值。

/*.**/

匹配 c 語言風格的注釋 /* ... */

擷取字串中的數字辦法

string s="";
  foreach(match m in regex.matches(s,@"d+"))
  {
  console.writeline(m.value);
  }

去了字串末尾數字方法

string str = "007";
   string pattern = @"(.+?)(d+)$";
   string 結果 = system.text.regularexpressions.regex.replace(str, pattern, "$1");

 

-
/// <summary>
  /// 擷取字串中的數字
  /// </summary>
  /// <param name="par"></param>
  /// <returns></returns>
  private int getnumber(string par)
  {
   string strtempcontent =par;
   strtempcontent = system.text.regularexpressions.regex.replace(strtempcontent, @"[^d]*", "");
   return convert.toint32(strtempcontent);

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.