In Java, I'm currently using
str.matches("\\d")
but its only matching a single number.
I need to match ints and doubles, e.g. :
"1"
"1337"
".1"
"13.7"
Any help would be awesome.
|
|
I think this is tidier to look at than the other suggestions, while still doing the same thing.
|
|||||||||||
|
|
You can try this regexp:
|
|||||||||
|
This would match positive and negative ints, doubles that start with a digit, and doubles start with a dot |
||||
|
|
|
This will match any real number that the Java compiler will recognize. To do this, it also handles things like signed numbers and exponentials. It’s in
|
|||
|
|
|
There is a quite extensive lesson about regular expressions in the Java Tutorials. For information about matching multiple characters you should read the section about quantifiers. |
|||
|
|