I need to check that text contain only small letters a-z and ,
best way to do it in python?
|
I need to check that text contain only small letters a-z and , best way to do it in python? |
|||
|
|
Doing it with sets will be faster than doing it with for loops (especially if you want to check more than one text) and is all together cleaner than regexes for this situation. an alternative that might be faster than two sets, is
here's some meaningless
You can see that the setbased one is significantly faster than the generator expression with a small expected alphabet and success conditions. the generator expression is faster with failures because it can bail. This is pretty much whats to be expected so it's interesting to see the numbers back it up. another possibility that I forgot about is the hybrid approach.
it slows down the best case-ish but speeds up the worst case-ish. All in all, you'd have to test the different possibilities over a sample of your expected input. the broader the sample, the better. |
|||||||||||||||
|
Which gives you:
You can optimise a bit with re.compile:
|
|||||
|
|
|||
|
|
|
Not sure what do you mean with "contain", but this should go in your direction:
|
|||
|
|
|
Just:
with most efficient and simple. or in one line:
|
||||
|
|
|||
|
|
|
characters a -z are represented by bytes 97 - 122 and ord(char) returns the byte value of the character. Reading the file in binary and making the match should suffice.
|
||||
|
|