What does \d+ mean in regular expression terms?

前端 未结 4 2024
独厮守ぢ
独厮守ぢ 2021-01-31 02:04

I\'m new to regular expressions and came accros the following \\d+ . I do not exactly know what this means, please point me in the right direction.

相关标签:
4条回答
  • 2021-01-31 02:09

    \d is a digit (a character in the range 0-9), and + means 1 or more times. So, \d+ is 1 or more digits.

    This is about as simple as regular expressions get. You should try reading up on regular expressions a little bit more. Google has a lot of results for regular expression tutorial, for instance. Or you could try using a tool like the free Regex Coach that will let you enter a regular expression and sample text, then indicate what (if anything) matches the regex.

    0 讨论(0)
  • 2021-01-31 02:15

    \d is a digit, + is 1 or more, so a sequence of 1 or more digits

    0 讨论(0)
  • 2021-01-31 02:24

    \d is called a character class and will match digits. It is equal to [0-9].

    + matches 1 or more occurrences of the character before.

    So \d+ means match 1 or more digits.

    0 讨论(0)
  • 2021-01-31 02:34

    \d means 'digit'. + means, '1 or more times'. So \d+ means one or more digit. It will match 12 and 1.

    0 讨论(0)
提交回复
热议问题