vote up 13 vote down star
3

I have a simple task I need to perform in Python, which is to convert a string to all lowercase and strip out all non-ascii non-alpha characters.

For example:

"This is a Test" -> "thisisatest"
"A235th@#$&( er Ra{}|?>ndom" -> "atherrandom"

I have a simple function to do this:

import string
import sys

def strip_string_to_lowercase(s):
    tmpStr = s.lower().strip()
    retStrList = []
    for x in tmpStr:
        if x in string.ascii_lowercase:
            retStrList.append(x)

    return ''.join(retStrList)

But I cannot help thinking there is a more efficient, or more elegant, way.

Thanks!


Edit:

Thanks to all those that answered. I learned, and in some cases re-learned, a good deal of python.

flag

your code doesn't automatically strip < and you don't have o before t – SilentGhost Mar 12 at 14:43
@SilentGhost I think the < was probably cut and paste and his example string begins with capital O, not zero. – Dana Mar 12 at 14:47
@SilentGhost: I had a capital 'o' in there that does look a lot like a zero. Probably a bad example to use. I will edit it. – grieve Mar 12 at 14:48
@Dana: yep the < was a cut and paste error, that previewed correctly, but didn't actually display correctly. Oops! – grieve Mar 12 at 14:54

10 Answers

vote up 9 vote down check

Another solution (not that pythonic, but very fast) is to use string.translate - though note that this will not work for unicode. It's also worth noting that you can speed up Dana's code by moving the characters into a set (which looks up by hash, rather than performing a linear search each time). Here are the timings I get for various of the solutions given:

import string, re, timeit

# Precomputed values (for str_join_set and translate)

letter_set = frozenset(string.ascii_lowercase + string.ascii_uppercase)
tab = string.maketrans(string.ascii_lowercase + string.ascii_uppercase,
                       string.ascii_lowercase * 2)
deletions = ''.join(ch for ch in map(chr,range(256)) if ch not in letter_set)

s="A235th@#$&( er Ra{}|?>ndom"

# From unwind's filter approach
def test_filter(s):
    return filter(lambda x: x in string.ascii_lowercase, s.lower())

# using set instead (and contains)
def test_filter_set(s):
    return filter(letter_set.__contains__, s).lower()

# Tomalak's solution
def test_regex(s):
    return re.sub('[^a-z]', '', s.lower())

# Dana's
def test_str_join(s):
    return ''.join(c for c in s.lower() if c in string.ascii_lowercase)

# Modified to use a set.
def test_str_join_set(s):
    return ''.join(c for c in s.lower() if c in letter_set)

# Translate approach.
def test_translate(s):
    return string.translate(s, tab, deletions)


for test in sorted(globals()):
    if test.startswith("test_"):
        assert globals()[test](s)=='atherrandom'
        print "%30s : %s" % (test, timeit.Timer("f(s)", 
              "from __main__ import %s as f, s" % test).timeit(200000))

This gives me:

               test_filter : 2.57138351271
           test_filter_set : 0.981806765698
                test_regex : 3.10069885233
             test_str_join : 2.87172979743
         test_str_join_set : 2.43197956381
            test_translate : 0.335367566218

[Edit] Updated with filter solutions as well. (Note that using set.__contains__ makes a big difference here, as it avoids making an extra function call for the lambda.

link|flag
The timing code was a nice addition. See my answer below where I added in the filter solutions as well. – grieve Mar 12 at 16:17
Oops - missed those. I've added a filter solution as well now. – Brian Mar 12 at 16:26
Accepting this one, because it is comprehensive. It also contains the filter with a set solution which is the optimal combination of speed and elegance for me. – grieve Mar 13 at 0:50
Very nice, translation tables are still my favourite. – Christian Witts Mar 13 at 7:35
test_filter_set = lambda s: filter(letter_set.__contains__, s).lower() is slightly faster – J.F. Sebastian Mar 14 at 10:03
show 1 more comment
vote up 12 vote down
>>> filter(str.isalpha, "This is a Test").lower()
'thisisatest'
>>> filter(str.isalpha, "A235th@#$&( er Ra{}|?>ndom").lower()
'atherrandom'
link|flag
str.isalpha is locale-dependent. It may leave non-ascii characters. – J.F. Sebastian Mar 14 at 9:46
vote up 9 vote down

I would:

  • lowercase the string
  • replace all [^a-z] with ""

Like that:

def strip_string_to_lowercase():
  nonascii = re.compile('[^a-z]')
  return lambda s: nonascii.sub('', s.lower().strip())

EDIT: It turns out that the original version (below) is really slow, though some performance can be gained by converting it into a closure (above).

def strip_string_to_lowercase(s):
  return re.sub('[^a-z]', '', s.lower().strip())


My performance measurements with 100,000 iterations against the string

"A235th@#$&( er Ra{}|?>ndom"

revealed that:

  • f_re_0 took 2672.000 ms (this is the original version of this answer)
  • f_re_1 took 2109.000 ms (this is the closure version shown above)
  • f_re_2 took 2031.000 ms (the closure version, without the redundant strip())
  • f_fl_1 took 1953.000 ms (unwind's filter/lambda version)
  • f_fl_2 took 1485.000 ms (Coady's filter version)
  • f_jn_1 took 1860.000 ms (Dana's join version)

For the sake of the test, I did not print the results.

link|flag
misread - it - removed comment :-) – TofuBeer Mar 12 at 14:47
the strip() isn't particularly needed as anything that strip() would remove is removed by the '[^a-z]' :o) – George Shore Mar 12 at 14:52
Two loops or not, it's faster than any other way I've tried, including string.translate. – bobince Mar 12 at 14:55
@George Shore: Good Point! – grieve Mar 12 at 14:56
@George Shore: You are right. I don't expect it to make much of a difference (performance-wise) though. And I left it in so when you look at the code it's clear instantly that the result will be stripped - it would be a not-so-obvious "side effect" otherwise. – Tomalak Mar 12 at 15:01
show 12 more comments
vote up 9 vote down

Not especially runtime efficient, but certainly nicer on poor, tired coder eyes:

def strip_string_and_lowercase(s):
    return ''.join(c for c in s.lower() if c in string.ascii_lowercase)
link|flag
as a matter of fact it's more runtime efficient than mine, let alone Tomalak's – SilentGhost Mar 12 at 14:56
@SilentGhost -- Woah! I'm a genius :P – Dana Mar 12 at 14:57
it's rather obvious solution :) – SilentGhost Mar 12 at 14:59
Join is crazy efficient in python it seems. Most tasks that involve string concatenation are faster via join. – thebigjc Mar 12 at 19:01
vote up 4 vote down

Similar to @Dana's, but I think this sounds like a filtering job, and that should be visible in the code. Also without the need to explicitly call join():

def strip_string_to_lowercase(s):
  return filter(lambda x: x in string.ascii_lowercase, s.lower())
link|flag
This would miss the capital 'A' and 'R', but changing that last s to s.lower() should solve that. Thanks for the tip. – grieve Mar 12 at 14:52
Oops, sorry, fixed now. Thanks, glad you liked it, bugs and all. :) – unwind Mar 12 at 15:03
This seems to be the "most efficient way" the the OP asked about. +1 – Tomalak Mar 12 at 16:29
It seems there was an optimization lurking in not using the lambda (see @Brian's answer). Great! – unwind Mar 13 at 7:37
vote up 2 vote down

This is a typical application of list compehension:

import string
s = "O235th@#$&( er Ra{}|?<ndom"
print ''.join(c for c in s.lower() if c in string.ascii_lowercase)

It won't filter out "<" (html entity), as in your example, but I assume that was accidental cut and past problem.

link|flag
vote up 2 vote down
>>> import string
>>> a = "O235th@#$&( er Ra{}|?&lt;ndom"
>>> ''.join(i for i in a.lower() if i in string.ascii_lowercase)
'otheraltndom'

doing essentially the same as you.

link|flag
Yours skips the capital O and R, sg, because you're testing for membership in ascii_lowercase before you call lower() – Dana Mar 12 at 14:46
vote up 2 vote down

Clean translate method

>>> import string
>>> deletechars = ''.join(set(string.maketrans('',''))
...                       - set(string.ascii_letters))
>>> table = string.maketrans(string.ascii_letters, string.ascii_lowercase*2)
>>> "A235th@#$&( er Ra{}|?>ndom".translate(table, deletechars)
'atherrandom'

Python 3.x translate method

>>> import string, sys
>>> deletechars = ''.join(set(map(chr, range(sys.maxunicode)))
...                       - set(string.ascii_letters))
>>> table = str.maketrans(string.ascii_letters, string.ascii_lowercase*2,
...                       deletechars)
>>> "A235th@#$&( er Ra{}|?>ndom".translate(table)
'atherrandom'
link|flag
vote up 1 vote down

I added the filter solutions to Brian's code:

import string, re, timeit

# Precomputed values (for str_join_set and translate)

letter_set = frozenset(string.ascii_lowercase + string.ascii_uppercase)
tab = string.maketrans(string.ascii_lowercase + string.ascii_uppercase,
                       string.ascii_lowercase * 2)
deletions = ''.join(ch for ch in map(chr,range(256)) if ch not in letter_set)

s="A235th@#$&( er Ra{}|?>ndom"

def test_original(s):
    tmpStr = s.lower().strip()
    retStrList = []
    for x in tmpStr:
        if x in string.ascii_lowercase:
            retStrList.append(x)

    return ''.join(retStrList)


def test_regex(s):
    return re.sub('[^a-z]', '', s.lower())

def test_regex_closure(s):
  nonascii = re.compile('[^a-z]')
  def replacer(s):
    return nonascii.sub('', s.lower().strip())
  return replacer(s)


def test_str_join(s):
    return ''.join(c for c in s.lower() if c in string.ascii_lowercase)

def test_str_join_set(s):
    return ''.join(c for c in s.lower() if c in letter_set)

def test_filter_set(s):
    return filter(letter_set.__contains__, s.lower())

def test_filter_isalpha(s):
    return filter(str.isalpha, s).lower()

def test_filter_lambda(s):
    return filter(lambda x: x in string.ascii_lowercase, s.lower())

def test_translate(s):
    return string.translate(s, tab, deletions)

for test in sorted(globals()):
    if test.startswith("test_"):
        print "%30s : %s" % (test, timeit.Timer("f(s)", 
              "from __main__ import %s as f, s" % test).timeit(200000))

This gives me:

       test_filter_isalpha : 1.31981746283
        test_filter_lambda : 2.23935583992
           test_filter_set : 0.76511679557
             test_original : 2.13079176264
                test_regex : 2.44295629752
        test_regex_closure : 2.65205913042
             test_str_join : 2.25571266739
         test_str_join_set : 1.75565888961
            test_translate : 0.269259640541

It appears that isalpha is using a similar algorithm, at least in terms of O(), to the set algorithm.


Edit: Added the filter set, and renamed the filter functions to be a little more clear.

link|flag
vote up 0 vote down

Personally I would use a regular expression and then convert the final string to lower case.

I have no idea how to write it in python but the basic idea is

  1. Remove characters in string that don't match case-insensitive regex "\w"

  2. Convert string to lower-case

or vise-versa

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.