I want to check a string that contains the period, ".", at most once in python.
|
|
|||||
|
|
|
And be sure to
Edit: If you consider only integers and decimals, it's even easier:
|
||||||
|
|
|
Why do you need to check? If you have a number in a string, I now guess you will want to handle it as a number soon. Perhaps you can do this without Looking Before You Leap:
|
||
|
|
|
|
No regexp is needed, see
|
||
|
|
|
|
If the period should exist only once in the entire string, then use the
Breaking this down:
As an aside, personally I wouldn't use a regular expression for this (unless I was checking other aspects of the string for validity too). I would just use the count function. |
||||||||
|
|
|
You can use:
(Matches period zero or one times.) |
||
|
|
|
|
While period is special char it must be escaped. So "\.+" should work. EDIT: Use '?' instead of '+' to match one or zero repetitions. Have a look at: re — Regular expression operations |
||||||
|
