A regular expression to match the first occurrence of a number in a string.
/^\d+/g
Matches:
- 123Regex456
- 1A2B3C
- 123456
Non-matches:
- Regex123
- abcdef
See Also:
- Regex To Match The Last Occurrence Of Characters In A String
- Regex To Match Any Numbers But The Last X Digits