x Did you like it? Well, then please consider making a donation :)

Regex Tag - number

Regex.Matches, Regular Expression for hexadecimal number

Matches expression starting with a 0, following by either a lower or uppercase x, followed by one or more characters in the ranges 0-9, or a-f, or A-F.

Type: match, Date: 8/14/2015 1:07:13 PMAuthor: stackoverflow

Get only Arabic digits

Use ([0-9]+) if you need to match more than one digit (only Arabic numbers!). Use (\d+) if you need all digits (all unicode digits).

Type: match, Date: 7/12/2015 4:00:33 PMAuthor: stackoverflow