正则表达式仅从字符串中提取数字

时间:2018-12-14 11:53:38

标签: asp.net regex

我们得到了以下字符串,我们如何仅从这些pls中提取数字:

String 1: 29.Terms & Conditions
Output Expected: 29

String 2: 
29.1Termination Date
or
29.11Termination Date
Output Expected: 29.1 or 29.11 (as per above strings)

我们想使用正则表达式在asp.net中做到这一点

1 个答案:

答案 0 :(得分:1)

首先确定您只需要一个数字或带有。(点)的数字。

  

字符串1。\ d +

     

字符串2。\ d + [。] \ d +