Other Resources:
Decimal digit character class - \d
What is abbreviation of a character class of all decimal digits?
How to write a regular expression using a character class abbreviation to capture signed integer numbers in a text string like this: from -32768 to 32767?
✍: FYIcenter.com
![]()
The predefined abbreviation of a character class of all decimal digits is \d, which is the same as [0123456789], or [0-9].
The regular expression to capture signed integer numbers is:
(-?\d+)
-? - matches '-' or nothing
\d+ - matches 1 or more decimal digits
2013-01-23, 0👍, 0💬
Popular Posts:
All credit card numbers issued by American Express must start with 34 or 37 and have 15 digits. For ...
How to capture the MSN (Microsoft Network) bot entries from Web log file? Here are some Web log file...
How to capture the MSN (Microsoft Network) bot entries from Web log file? Here are some Web log file...
All credit card numbers issued by Diners Club must start with 300 through 305, 36 or 38 and have 14 ...
How to write a regular expression to validate GUID (Globally Unique IDentifier) or UUID (Universally...