I know how to do this if I iterate through all of the characters in the string but I am looking for a more elegant method.
Thanks
|
2
|
|||
|
|
|
A regular expression will do the trick with very little code:
|
||||||||||
|
|
|
use a regex and see if it matches!
|
||||
|
|
|
|
||
|
|
|
|
You could always use a list comprehension and check the results with all, it would be a little less resource intensive than using a regex: |
||||
|
|
|
um, you guys need to brush up on your regexp... just [\w-] |
||
|
|
|
|
There are a variety of ways of achieving this goal, some are clearer than others. For each of my examples, 'True' means that the string passed is valid, 'False' means it contains invalid characters. First of all, there's the naive approach:
Then there's use of a regular expression, you can do this with re.match(). Note that '-' has to be at the end of the [] otherwise it will be used as a 'range' delimiter. Also note the $ which means 'end of string'. Other answers noted in this question use a special character class, '\w', I always prefer using an explicit character class range using [] because it is easier to understand without having to look up a quick reference guide, and easier to special-case.
Another solution noted that you can do an inverse match with regular expressions, I've included that here now. Note that [^...] inverts the character class because the ^ is used:
You can also do something tricky with the 'set' object. Have a look at this example, which removes from the original string all the characters that are allowed, leaving us with a set containing either a) nothing, or b) the offending characters from the string:
|
||||
|
|
|
As an alternative to using regex you could do it in Sets:
|
||
|
|
|
|
If it were not for the dashes and underscores, the easiest solution would be
(Section 3.6.1 of the Phython Library Reference) |
||
|
|
|
|
[Edit] There's another solution not mentioned yet, and it seems to outperform the others given so far in most cases. Use string.translate to replace all valid characters in the string, and see if we have any invalid ones left over. This is pretty fast as it uses the underlying C function to do the work, with very little python bytecode involved. Obviously performance isn't everything - going for the most readable solutions is probably the best approach when not in a performance critical codepath, but just to see how the solutions stack up, here's a performance comparison of all the methods proposed so far. check_trans is the one using the string.translate method. Test code:
The results on my system are:
The translate approach seems best in most cases, dramatically so with long valid strings, but is beaten out by regexes in test_long_invalid (Presumably because the regex can bail out immediately, but translate always has to scan the whole string). The set approaches are usually worst, beating regexes only for the empty string case. Using all(x in allowed_set for x in s) performs well if it bails out early, but can be bad if it has to iterate through every character. isSubSet and set difference are comparable, and are consistently proportional to the length of the string regardless of the data. There's a similar difference between the regex methods matching all valid characters and searching for invalid characters. Matching performs a little better when checking for a long, but fully valid string, but worse for invalid characters near the end of the string. |
|||
|