How can I check if the first element of the list (below) is a number (using some sort of regular expression) in python:
temp = ['1', 'abc', 'XYZ', 'test', '1']
Many thanks.
|
How can I check if the first element of the list (below) is a number (using some sort of regular expression) in python:
Many thanks. |
|||||||
|
If it must be done with a regex:
|
|||||||||||||||||||
|
|
If you are just expecting a simple positive number, you can use the isDigit method of Strings.
|
|||
|
|
|
Using regular expressions (because you asked):
Otherwise, just try to parse as an int and catch the exception:
Of course, this all gets (slightly) more complicated if you want floats, negatives, scientific notation, etc. I'll leave that as an exercise to the asker :) |
|||
|
|