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
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