|
9
|
|
|
[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:
import string, re, timeit
pat = re.compile('[\w-]*$')
pat_inv = re.compile ('[^\w-]')
allowed_chars=string.letters allowed_chars=string.ascii_letters + string.digits + '_-'
allowed_set = set(allowed_chars)
trans_table = string.maketrans('','')
def check_set_diff(s):
return not set(s) - allowed_set
def check_set_all(s):
return all(x in allowed_set for x in s)
def check_set_subset(s):
return set(s).issubset(allowed_set)
def check_re_match(s):
return pat.match(s)
def check_re_inverse(s): # Search for non-matching character.
return not pat_inv.search(s)
def check_trans(s):
return not s.translate(trans_table,allowed_chars)
test_long_almost_valid='a_very_long_string_that_is_mostly_valid_except_for_last_char'*99 + '!'
test_long_valid='a_very_long_string_that_is_completely_valid_' * 99
test_short_valid='short_valid_string'
test_short_invalid='/$%$%&'
test_long_invalid='/$%$%&' * 99
test_empty=''
def main():
funcs = sorted(f for f in globals() if f.startswith('check_'))
tests = sorted(f for f in globals() if f.startswith('test_'))
for test in tests:
print "Test %-15s (length = %d):" % (test, len(globals()[test]))
for func in funcs:
print " %-20s : %.3f" % (func,
timeit.Timer('%s(%s)' % (func, test), 'from __main__ import pat,allowed_set,%s' % ','.join(funcs+tests)).timeit(10000))
print
if __name__=='__main__': main()
The results on my system are:
Test test_empty (length = 0):
check_re_inverse : 0.042
check_re_match : 0.030
check_set_all : 0.027
check_set_diff : 0.029
check_set_subset : 0.029
check_trans : 0.014
Test test_long_almost_valid (length = 5941):
check_re_inverse : 2.690
check_re_match : 3.037
check_set_all : 18.860
check_set_diff : 2.905
check_set_subset : 2.903
check_trans : 0.182
Test test_long_invalid (length = 594):
check_re_inverse : 0.017
check_re_match : 0.015
check_set_all : 0.044
check_set_diff : 0.311
check_set_subset : 0.308
check_trans : 0.034
Test test_long_valid (length = 4356):
check_re_inverse : 1.890
check_re_match : 1.010
check_set_all : 14.411
check_set_diff : 2.101
check_set_subset : 2.333
check_trans : 0.140
Test test_short_invalid (length = 6):
check_re_inverse : 0.017
check_re_match : 0.019
check_set_all : 0.044
check_set_diff : 0.032
check_set_subset : 0.037
check_trans : 0.015
Test test_short_valid (length = 18):
check_re_inverse : 0.125
check_re_match : 0.066
check_set_all : 0.104
check_set_diff : 0.051
check_set_subset : 0.046
check_trans : 0.017
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.
|
|
|
|
8
|
|
edited Sep 19 '08 at 12:01
|
[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:
import string, re, timeit
pat = re.compile('[\w-]*$')
pat_inv = re.compile ('[^\w-]')
allowed_chars=string.letters + string.digits + '_-'
allowed_set = set(allowed_chars)
trans_table = string.maketrans('','')
def check_set_diff(s):
return not set(s) - allowed_set
def check_set_all(s):
return all(x in allowed_set for x in s)
def check_set_subset(s):
return set(s).issubset(allowed_set)
def check_re_match(s):
return pat.match(s)
def check_re_inverse(s): # Search for non-matching character.
return not pat_inv.search(s)
def check_trans(s):
return not s.translate(trans_table,allowed_chars)
test_long_almost_valid='a_very_long_string_that_is_mostly_valid_except_for_last_char'*99 + '!'
test_long_valid='a_very_long_string_that_is_completely_valid_' * 99
test_short_valid='short_valid_string'
test_short_invalid='/$%$%&'
test_long_invalid='/$%$%&' * 99
test_empty=''
def main():
funcs = sorted(f for f in globals() if f.startswith('check_'))
tests = sorted(f for f in globals() if f.startswith('test_'))
for test in tests:
print "Test %-15s (length = %d):" % (test, len(globals()[test]))
for func in funcs:
print " %-20s : %.3f" % (func,
timeit.Timer('%s(%s)' % (func, test), 'from __main__ import pat,allowed_set,%s' % ','.join(funcs+tests)).timeit(10000))
print
if __name__=='__main__': main()
The results on my system are:
Test test_empty (length = 0):
check_re_inverse : 0.042
check_re_match : 0.030
check_set_all : 0.027
check_set_diff : 0.029
check_set_subset : 0.029
check_trans : 0.014
Test test_long_almost_valid (length = 5941):
check_re_inverse : 2.690
check_re_match : 3.037
check_set_all : 18.860
check_set_diff : 2.905
check_set_subset : 2.903
check_trans : 0.182
Test test_long_invalid (length = 594):
check_re_inverse : 0.017
check_re_match : 0.015
check_set_all : 0.044
check_set_diff : 0.311
check_set_subset : 0.308
check_trans : 0.034
Test test_long_valid (length = 4356):
check_re_inverse : 1.890
check_re_match : 1.010
check_set_all : 14.411
check_set_diff : 2.101
check_set_subset : 2.333
check_trans : 0.140
Test test_short_invalid (length = 6):
check_re_inverse : 0.017
check_re_match : 0.019
check_set_all : 0.044
check_set_diff : 0.032
check_set_subset : 0.037
check_trans : 0.015
Test test_short_valid (length = 18):
check_re_inverse : 0.125
check_re_match : 0.066
check_set_all : 0.104
check_set_diff : 0.051
check_set_subset : 0.046
check_trans : 0.017
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. However, it performs much but worse for invalid characters near the end of the string. The search for invalid characters approach seems a bit better overall.
|
|
|
| |
|
Post Made Community Wiki by Community♦
|
occurred Sep 19 '08 at 7:24
|
|
|
|
|
|
7
|
|
edited Sep 19 '08 at 7:24
|
[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:
import string, re, timeit
pat = re.compile('[\w-]*$')
pat_inv = re.compile ('[^\w-]')
allowed_chars=string.letters + string.digits + '_-'
allowed_set = set(allowed_chars)
trans_table = string.maketrans('','')
def check_set_diff(s):
return not set(s) - allowed_set
def check_set_all(s):
return all(x in allowed_set for x in s)
def check_set_subset(s):
return set(s).issubset(allowed_set)
def check_re_match(s):
return pat.match(s)
def check_re_inverse(s): # Search for non-matching character.
return not pat_inv.search(s)
def check_trans(s):
return not s.translate(trans_table,allowed_chars)
test_long_almost_valid='a_very_long_string_that_is_mostly_valid_except_for_last_char'*99 + '!'
test_long_valid='a_very_long_string_that_is_completely_valid_' * 99
test_short_valid='short_valid_string'
test_short_invalid='/$%$%&'
test_long_invalid='/$%$%&' * 99
test_empty=''
def main():
funcs = sorted(f for f in globals() if f.startswith('check_'))
tests = sorted(f for f in globals() if f.startswith('test_'))
for test in tests:
print "Test %-15s (length = %d):" % (test, len(globals()[test]))
for func in funcs:
print " %-20s : %.3f" % (func,
timeit.Timer('%s(%s)' % (func, test), 'from __main__ import pat,allowed_set,%s' % ','.join(funcs+tests)).timeit(10000))
print
if __name__=='__main__': main()
The results on my system are:
Test test_empty (length = 0):
check_re_inverse : 0.042
check_re_match : 0.030
check_set_all : 0.027
check_set_diff : 0.029
check_set_subset : 0.029
check_trans : 0.014
Test test_long_almost_valid (length = 5941):
check_re_inverse : 2.690
check_re_match : 3.037
check_set_all : 18.860
check_set_diff : 2.905
check_set_subset : 2.903
check_trans : 0.182
Test test_long_invalid (length = 594):
check_re_inverse : 0.017
check_re_match : 0.015
check_set_all : 0.044
check_set_diff : 0.311
check_set_subset : 0.308
check_trans : 0.034
Test test_long_valid (length = 4356):
check_re_inverse : 1.890
check_re_match : 1.010
check_set_all : 14.411
check_set_diff : 2.101
check_set_subset : 2.333
check_trans : 0.140
Test test_short_invalid (length = 6):
check_re_inverse : 0.017
check_re_match : 0.019
check_set_all : 0.044
check_set_diff : 0.032
check_set_subset : 0.037
check_trans : 0.015
Test test_short_valid (length = 18):
check_re_inverse : 0.125
check_re_match : 0.066
check_set_all : 0.104
check_set_diff : 0.051
check_set_subset : 0.046
check_trans : 0.017
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. However, it performs much worse for invalid characters near the end of the string. The search for invlid invalid characters approach seems a bit better overall.
|
|
|
|
6
|
|
edited Sep 19 '08 at 6:39
|
[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:
import string, re, timeit
pat = re.compile('[\w-]*$')
pat_inv = re.compile ('[^\w-]')
allowed_chars=string.letters + string.digits + '_-'
allowed_set = set(allowed_chars)
trans_table = string.maketrans('','')
def check_set_diff(s):
return not set(s) - allowed_set
def check_set_all(s):
return all(x in allowed_set for x in s)
def check_set_subset(s):
return set(s).issubset(allowed_set)
def check_re_match(s):
return pat.match(s)
def check_re_inverse(s): # Search for non-matching character.
return not pat_inv.search(s)
def check_trans(s):
# Search for non-matching character.
return not s.translate(trans_table,allowed_chars)
test_long_almost_valid='a_very_long_string_that_is_mostly_valid_except_for_last_char'*99 + '!'
test_long_valid='a_very_long_string_that_is_completely_valid_' * 99
test_short_valid='short_valid_string'
test_short_invalid='/$%$%&'
test_long_invalid='/$%$%&' * 99
test_empty=''
def main():
funcs = sorted(f for f in globals() if f.startswith('check_'))
tests = sorted(f for f in globals() if f.startswith('test_'))
for test in tests:
print "Test %-15s (length = %d):" % (test, len(globals()[test]))
for func in funcs:
print " %-20s : %.3f" % (func,
timeit.Timer('%s(%s)' % (func, test), 'from __main__ import pat,allowed_set,%s' % ','.join(funcs+tests)).timeit(10000))
print
if __name__=='__main__': main()
The results on my system are:
Test test_empty (length = 0):
check_re_inverse : 0.042
check_re_match : 0.030
check_set_all : 0.027
check_set_diff : 0.029
check_set_subset : 0.029
check_trans : 0.014
Test test_long_almost_valid (length = 5941):
check_re_inverse : 2.690
check_re_match : 3.037
check_set_all : 18.860
check_set_diff : 2.905
check_set_subset : 2.903
check_trans : 0.182
Test test_long_invalid (length = 594):
check_re_inverse : 0.017
check_re_match : 0.015
check_set_all : 0.044
check_set_diff : 0.311
check_set_subset : 0.308
check_trans : 0.034
Test test_long_valid (length = 4356):
check_re_inverse : 1.890
check_re_match : 1.010
check_set_all : 14.411
check_set_diff : 2.101
check_set_subset : 2.333
check_trans : 0.140
Test test_short_invalid (length = 6):
check_re_inverse : 0.017
check_re_match : 0.019
check_set_all : 0.044
check_set_diff : 0.032
check_set_subset : 0.037
check_trans : 0.015
Test test_short_valid (length = 18):
check_re_inverse : 0.125
check_re_match : 0.066
check_set_all : 0.104
check_set_diff : 0.051
check_set_subset : 0.046
check_trans : 0.017
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. However, it performs much worse for invalid characters near the end of the string. The search for invlid characters seems a bit better overall.
|
|
|
|
5
|
|
edited Sep 18 '08 at 21:27
|
[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.
Here's
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:
import string, re, timeit
pat = re.compile('[\w-]*$')
pat_inv = re.compile ('[^\w-]')
allowed_chars=string.letters + string.digits + '_-'
allowed_set = set(allowed_chars)
trans_table = string.maketrans('','')
def check_set_diff(s):
return not set(s) - allowed_set
def check_set_all(s):
return all(x in allowed_set for x in s)
def check_set_subset(s):
return set(s).issubset(allowed_set)
def check_re_match(s):
return pat.match(s)
def check_re_inverse(s): # Search for non-matching character.
return not pat_inv.search(s)
def check_trans(s): # Search for non-matching character.
return not s.translate(trans_table,allowed_chars)
test_long_almost_valid='a_very_long_string_that_is_mostly_valid_except_for_last_char'*99 + '!'
test_long_valid='a_very_long_string_that_is_completely_valid_' * 99
test_short_valid='short_valid_string'
test_short_invalid='/$%$%&'
test_long_invalid='/$%$%&' * 99
test_empty=''
def main():
funcs = sorted(f for f in globals() if f.startswith('check_'))
tests = sorted(f for f in globals() if f.startswith('test_'))
for test in tests:
print "Test %-15s (length = %d):" % (test, len(globals()[test]))
for func in funcs:
print " %-20s : %.3f" % (func,
timeit.Timer('%s(%s)' % (func, test), 'from __main__ import pat,allowed_set,%s' % ','.join(funcs+tests)).timeit(10000))
print
if __name__=='__main__': main()
The results on my system are:
Test test_empty (length = 0):
check_re_inverse : 0.042
check_re_match : 0.030
check_set_all : 0.027
check_set_diff : 0.029
check_set_subset : 0.029
check_trans : 0.014
Test test_long_almost_valid (length = 5941):
check_re_inverse : 2.690
check_re_match : 3.037
check_set_all : 18.860
check_set_diff : 2.905
check_set_subset : 2.903
check_trans : 0.182
Test test_long_invalid (length = 594):
check_re_inverse : 0.017
check_re_match : 0.015
check_set_all : 0.044
check_set_diff : 0.311
check_set_subset : 0.308
check_trans : 0.034
Test test_long_valid (length = 4356):
check_re_inverse : 1.890
check_re_match : 1.010
check_set_all : 14.411
check_set_diff : 2.101
check_set_subset : 2.333
check_trans : 0.140
Test test_short_invalid (length = 6):
check_re_inverse : 0.017
check_re_match : 0.019
check_set_all : 0.044
check_set_diff : 0.032
check_set_subset : 0.037
check_trans : 0.015
Test test_short_valid (length = 18):
check_re_inverse : 0.125
check_re_match : 0.066
check_set_all : 0.104
check_set_diff : 0.051
check_set_subset : 0.046
check_trans : 0.017
The translate approach seems best in most cases, dramatically so with long valid strings, but are 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. However, it performs much worse for invalid characters near the end of the string. The search for invlid characters seems a bit better overall.
|
|
|
|
4
|
|
edited Sep 18 '08 at 20:52
|
Just [Edit] There's another solution not mentioned yet, and it seems to give some idea of 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. Here's a performance comparison of all the various methods mentioned here, I ran a few testsproposed so far. The short answer: use regular expressionscheck_trans is the one using the string.translate method. allowed_set = set(string.letters allowed_chars=string.letters + string.digits + ' _-')allowed_set = set(allowed_chars)trans_table = string.maketrans('','')def check_set_diff(mystring)check_set_diff(s): return not set(mystringset(s) - allowed_setdef check_set_all(mystring)check_set_all(s): return all(x in allowed_set for x in mystrings)def check_set_subset(mystring)check_set_subset(s): return set(mystring).issubset(allowed_setset(s).issubset(allowed_set) long_almost_valid='a_very_long_string_that_is_mostly_valid_except_for_last_char'*99 def check_trans(s): # Search for non-matching character. return not s.translate(trans_table,allowed_chars)long_valid='a_very_long_string_that_is_completely_valid_test_long_valid='a_very_long_string_that_is_completely_valid_' * 99 short_valid='short_valid_stringtest_short_valid='short_valid_string' short_invalid='/$%$test_short_invalid='/$%$%&' long_invalid='/$%$test_long_invalid='/$%$%&' * 99 def main(): funcs = ['check_set_diff', 'check_set_all', 'check_set_subset', 'check_re_match', 'check_re_inverse']sorted(f for f in globals() if f.startswith('check_')) tests = ['long_valid', 'long_almost_valid', 'short_valid', 'long_invalid', 'short_invalid']sorted(f for f in globals() if f.startswith('test_')) for test in tests: if __name__=='__main__': main()The results on my system are: Test long_valid test_empty (length = 4356)0): check_set_diff check_re_inverse : 1.983 check_re_match : 0.030 check_set_subset 0.027 check_set_diff : 1.992 check_re_match 0.029 check_set_subset : 0.463 check_re_inverse 0.029 check_trans : 0.599Test long_almost_valid test_long_almost_valid (length = 5941): check_set_diff check_re_inverse : 2.714 check_re_match : 3.037 check_set_subset 18.860 check_set_diff : 2.720 check_re_match 2.905 check_set_subset : 1.993 check_re_inverse 2.903 check_trans : 0.819Test short_valid test_long_invalid (length = 18)594): check_set_diff check_re_inverse : 0.039 check_re_match : 0.015 check_set_subset 0.044 check_set_diff : 0.039 check_re_match 0.311 check_set_subset : 0.016 check_re_inverse 0.308 check_trans : 0.011Test long_invalid test_long_valid (length = 594)4356): check_set_diff check_re_inverse : 0.287 check_re_match : 1.010 check_set_subset 14.411 check_set_diff : 0.286 check_re_match 2.101 check_set_subset : 0.014 check_re_inverse 2.333 check_trans : 0.015Test short_invalid test_short_invalid (length = 6): check_set_diff check_re_inverse : 0.024 check_re_match : 0.019 check_set_diff : 0.032 check_re_match 0.037 check_trans : 0.014Test test_short_valid (length = 18):In general0.125 check_re_match : 0.066 check_set_all : 0.104 check_set_diff : 0.051 check_set_subset : 0.046 check_trans : 0.017 The translate approach seems best in most cases, regular expressions dramatically so with long valid strings, but are always fastestbeaten out by regexes in test_long_invalid (Presumably because the regex can bail out immediately, and but translate always has to scan the various whole string). The set methods vary depending on approaches are usually worst, beating regexes only for the type of inputempty string case.using Using all(x in s allowed_set for x in mystrings) 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. However, it performs much worse for invalid characters near the end of the string. The search for invlid characters seems a bit better overall.
|
|
|
|
3
|
|
edited Sep 18 '08 at 12:42
|
Just to give some idea of the performance of the various methods mentioned here, I ran a few tests. The short answer: use regular expressions.
Test code:
import string, re, timeit
pat = re.compile('[\w-]*$')
pat_inv = re.compile ('[^\w-]')
allowed_set = set(string.letters + string.digits + '_' + '-')
_-')
def check_set_diff(mystring):
return not set(mystring) - allowed_set
def check_set_all(mystring):
return all(x in allowed_set for x in mystring)
def check_set_subset(mystring):
return set(mystring).issubset(allowed_set)
def check_re_match(s):
return pat.match(s)
def check_re_inverse(s): # Search for non-matching character.
return not pat_inv.search(s)
long_almost_valid='a_very_long_string_that_is_mostly_valid_except_for_last_char'*99 + '!'
long_valid='a_very_long_string_that_is_completely_valid_' * 99
short_valid='short_valid_string'
short_invalid='/$%$%&'
# Short invalid string
long_invalid='/$%$%&' * 99
# Long invalid string
funcs = ['check_set_diff', 'check_set_all', 'check_set_subset', 'check_re_match', 'check_re_inverse']
tests = ['long_valid', 'long_almost_valid', 'short_valid', 'long_invalid', 'short_invalid']
for test in tests:
print "Test %-15s (length = %d):" % (test, len(globals()[test]))
for func in funcs:
print " %-20s : %.3f" % (func,
timeit.Timer('%s(%s)' % (func, test), 'from __main__ import pat,allowed_set,%s' % ','.join(funcs+tests)).timeit(10000))
print
The results are:
Test long_valid (length = 4356):
check_set_diff : 1.983
check_set_all : 8.487
check_set_subset : 1.992
check_re_match : 0.463
check_re_inverse : 0.599
Test long_almost_valid (length = 5941):
check_set_diff : 2.714
check_set_all : 11.353
check_set_subset : 2.720
check_re_match : 1.993
check_re_inverse : 0.819
Test short_valid (length = 18):
check_set_diff : 0.039
check_set_all : 0.056
check_set_subset : 0.039
check_re_match : 0.016
check_re_inverse : 0.011
Test long_invalid (length = 594):
check_set_diff : 0.287
check_set_all : 0.029
check_set_subset : 0.286
check_re_match : 0.014
check_re_inverse : 0.015
Test short_invalid (length = 6):
check_set_diff : 0.024
check_set_all : 0.030
check_set_subset : 0.022
check_re_match : 0.014
check_re_inverse : 0.014
In general, regular expressions are always fastest, and the various set methods vary depending on the type of input. using all(x in s for x in mystring) 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 matching all valid characters and searching for invalid characters. Matching performs a little better when checking for a long, but fully valid string. However, it performs much worse for invalid characters near the end of the string. The search for invlid characters seems a bit better overall.
|
|
|
|
2
|
|
edited Sep 18 '08 at 12:37
|
Just to give some idea of the performance of the various methods mentioned here, I ran a few tests. The short answer: use regular expressions.
Test code:
import string, re, timeit
pat = re.compile('[\w-]*$')
pat_inv = re.compile ('[^\w-]')
allowed_set = set(string.letters + string.digits + '_' + '-')
def check_set_diff(mystring):
return not set(mystring) - allowed_set
def check_set_all(mystring):
return all(x in allowed_set for x in mystring)
def check_set_subset(mystring):
return set(mystring).issubset(allowed_set)
def check_re(s)check_re_match(s):
return pat.match(s)
def check_re_inverse(s): # Search for non-matching character.
return not pat.search(spat_inv.search(s)
long_almost_valid='a_very_long_string_that_is_mostly_valid_except_for_last_char'*99 + '!'
long_valid='a_very_long_string_that_is_completely_valid_' * 99
short_valid='short_valid_string'
short_invalid='/$%$%&' # Short invalid string
long_invalid='/$%$%&' * 99 # Long invalid string
funcs = ['check_set_diff', 'check_set_all', 'check_set_subset', 'check_re']
check_re_match', 'check_re_inverse']
tests = ['long_valid', 'long_almost_valid', 'short_valid', 'long_invalid', 'short_invalid']
for test in tests:
print "Test %-15s (length = %d):" % (test, len(test)len(globals()[test]))
for func in funcs:
print " %-20s : %.3f" % (func,
timeit.Timer('%s(%s)' % (func, test), 'from __main__ import pat,allowed_set,%s' % ','.join(funcs+tests)).timeit(10000))
print
The results are:
Test long_valid (length = 10)4356):
check_set_diff : 1.984
1.983
check_set_all : 8.469
8.487
check_set_subset : 1.987
check_re 1.992
check_re_match : 0.645
0.463
check_re_inverse : 0.599
Test long_almost_valid (length = 17)5941):
check_set_diff : 2.703
2.714
check_set_all : 11.378
11.353
check_set_subset : 2.702
check_re 2.720
check_re_match : 0.840
1.993
check_re_inverse : 0.819
Test short_valid (length = 11)18):
check_set_diff : 0.040
0.039
check_set_all : 0.056
check_set_subset : 0.039
check_re check_re_match : 0.016
check_re_inverse : 0.011
Test long_invalid (length = 12)594):
check_set_diff : 0.289
0.287
check_set_all : 0.029
check_set_subset : 0.286
check_re check_re_match : 0.014
check_re_inverse : 0.015
Test short_invalid (length = 13)6):
check_set_diff : 0.023
0.024
check_set_all : 0.029
0.030
check_set_subset : 0.022
check_re check_re_match : 0.015
0.014
check_re_inverse : 0.014
In general, regular expressions are always fastest, and the various set methods vary depending on the type of input. using all(x in s for x in mystring) 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 matching all valid characters and searching for invalid characters. Matching performs a little better when checking for a long, but fully valid string. However, it performs much worse for invalid characters near the end of the string. The search for invlid characters seems a bit better overall.
|
|
|
|
1
|
|
answered Sep 18 '08 at 12:19
|
Just to give some idea of the performance of the various methods mentioned here, I ran a few tests. The short answer: use regular expressions.
Test code:
import string, re, timeit
pat = re.compile ('[^\w-]')
allowed_set = set(string.letters + string.digits + '_' + '-')
def check_set_diff(mystring):
return not set(mystring) - allowed_set
def check_set_all(mystring):
return all(x in allowed_set for x in mystring)
def check_set_subset(mystring):
return set(mystring).issubset(allowed_set)
def check_re(s):
return not pat.search(s)
long_almost_valid='a_very_long_string_that_is_mostly_valid_except_for_last_char'*99 + '!'
long_valid='a_very_long_string_that_is_completely_valid_' * 99
short_valid='short_valid_string'
short_invalid='/$%$%&' # Short invalid string
long_invalid='/$%$%&' * 99 # Long invalid string
funcs = ['check_set_diff', 'check_set_all', 'check_set_subset', 'check_re']
tests = ['long_valid', 'long_almost_valid', 'short_valid', 'long_invalid', 'short_invalid']
for test in tests:
print "Test %-15s (length = %d):" % (test, len(test))
for func in funcs:
print " %-20s : %.3f" % (func,
timeit.Timer('%s(%s)' % (func, test), 'from __main__ import pat,allowed_set,%s' % ','.join(funcs+tests)).timeit(10000))
print
The results are:
Test long_valid (length = 10):
check_set_diff : 1.984
check_set_all : 8.469
check_set_subset : 1.987
check_re : 0.645
Test long_almost_valid (length = 17):
check_set_diff : 2.703
check_set_all : 11.378
check_set_subset : 2.702
check_re : 0.840
Test short_valid (length = 11):
check_set_diff : 0.040
check_set_all : 0.056
check_set_subset : 0.039
check_re : 0.011
Test long_invalid (length = 12):
check_set_diff : 0.289
check_set_all : 0.029
check_set_subset : 0.286
check_re : 0.015
Test short_invalid (length = 13):
check_set_diff : 0.023
check_set_all : 0.029
check_set_subset : 0.022
check_re : 0.015
In general, regular expressions are always fastest, and the various set methods vary depending on the type of input. using all(x in s for x in mystring) 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.
|
|
|