Regular expression for extracting a number

后端 未结 4 1621
不思量自难忘°
不思量自难忘° 2020-12-22 08:45

I would like to be able to extract a number from within a string formatted as follows:

\"<[1085674730]> hello foo1, how are you doing?\"

I\'m a novice wit

4条回答
  •  有刺的猬
    2020-12-22 09:06

    Use:

    /<\[([[:digit:]]+)\]>/
    

    If your implementation doesn't support the handy [:digit:] syntax, then use this:

    /<\[([\d]+)\]>/
    

    And if your implementation doesn't support the handy \d syntax, then use this:

    /<\[([0-9]+)\]>/
    

提交回复
热议问题