I need a regular expression that validates a number, but doesn't require a digit after the decimal. ie.
123
123.
123.4
would all be valid
123..
would be invalid
Any would be greatly appreciated!
|
I need a regular expression that validates a number, but doesn't require a digit after the decimal. ie.
would all be valid
would be invalid Any would be greatly appreciated! |
||||
|
|
|
Use the following:
|
|||||||||
|
One or more digits, optional period, zero or more digits. Depending on your usage or regex engine you may need to add start/end line anchors:
|
||||
|
|
|
Try this regex:
|
|||||||
|