up vote 34 down vote favorite
9
share [g+] share [fb]

Example:

>>> convert('CamelCase')
camel_case
link|improve this question
+1: very interesting question. – Stefano Borini Jul 24 '09 at 0:25
To convert in the other direction, see this other stackoverflow question. – Nathan Sep 30 '11 at 21:30
feedback

9 Answers

up vote 39 down vote accepted

This is pretty thorough:

def convert(name):
    s1 = re.sub('(.)([A-Z][a-z]+)', r'\1_\2', name)
    return re.sub('([a-z0-9])([A-Z])', r'\1_\2', s1).lower()

Works with all these (and doesn't harm already-un-cameled versions):

>>> convert('CamelCase')
'camel_case'
>>> convert('CamelCamelCase')
'camel_camel_case'
>>> convert('Camel2Camel2Case')
'camel2_camel2_case'
>>> convert('getHTTPResponseCode')
'get_http_response_code'
>>> convert('get2HTTPResponseCode')
'get2_http_response_code'
>>> convert('HTTPResponseCode')
'http_response_code'
>>> convert('HTTPResponseCodeXYZ')
'http_response_code_xyz'

Or if you're going to call it a zillion times, you can pre-compile the regexes:

first_cap_re = re.compile('(.)([A-Z][a-z]+)')
all_cap_re = re.compile('([a-z0-9])([A-Z])')
def convert(name):
    s1 = first_cap_re.sub(r'\1_\2', name)
    return all_cap_re.sub(r'\1_\2', s1).lower()
link|improve this answer
1  
Wow, you just saved me a ton of time and work, thanks! – sidewinderguy May 9 '11 at 18:34
This solution fails in these cases: _test_Method, __test__Method, _Test, getHTTPresponseCode, __CamelCase, and _Camel_Case. – freegnu May 16 '11 at 14:12
@freegnu, Fails how? It appears to work for me for all of those examples. – Cerin Jul 8 '11 at 22:43
1  
how about the reverse? Convert a not_camel_case to notCamelCase and/or NotCamelCase? – john2x Aug 14 '11 at 22:59
feedback

Here's my solution:

def un_camel(text):
    """ Converts a CamelCase name into an under_score name. 

        >>> un_camel('CamelCase')
        'camel_case'
        >>> un_camel('getHTTPResponseCode')
        'get_http_response_code'
    """
    result = []
    pos = 0
    while pos < len(text):
        if text[pos].isupper():
            if pos-1 > 0 and text[pos-1].islower() or pos-1 > 0 and \
            pos+1 < len(text) and text[pos+1].islower():
                result.append("_%s" % text[pos].lower())
            else:
                result.append(text[pos].lower())
        else:
            result.append(text[pos])
        pos += 1
    return "".join(result)

It supports those corner cases discussed in the comments. For instance, it'll convert getHTTPResponseCode to get_http_response_code like it should.

link|improve this answer
4  
-1 because this is very complicated compared to using regexps. – EOL Jul 24 '09 at 9:43
4  
EOL, I'm sure plenty of non-regexp people would think otherwise. – Evan Fosmark Jul 24 '09 at 15:01
This solution fails in these cases: _Method, _test_Method, __test__Method, getHTTPrespnseCode, __get_HTTPresponseCode, _Camel_Case, _Test, and _test_Method. – freegnu May 16 '11 at 14:16
@Evan, those people would be bad programmers. – Jesse Dhillon Jul 23 '11 at 9:14
feedback

Not in the standard library, but I found this script that appears to contain the functionality you need.

link|improve this answer
feedback

For the fun of it:

>>> def un_camel(input):
...     output = [input[0].lower()]
...     for c in input[1:]:
...             if c in ('ABCDEFGHIJKLMNOPQRSTUVWXYZ'):
...                     output.append('_')
...                     output.append(c.lower())
...             else:
...                     output.append(c)
...     return str.join('', output)
...
>>> un_camel("camel_case")
'camel_case'
>>> un_camel("CamelCase")
'camel_case'

Or, more for the fun of it:

>>> un_camel = lambda i: i[0].lower() + str.join('', ("_" + c.lower() if c in "ABCDEFGHIJKLMNOPQRSTUVWXYZ" else c for c in i[1:]))
>>> un_camel("camel_case")
'camel_case'
>>> un_camel("CamelCase")
'camel_case'
link|improve this answer
+1, but what about un_camel("getHTTPResponseCode") ? :) – Stefano Borini Jul 24 '09 at 1:28
1  
c.isupper() rather than c in ABCEF...Z – Jimmy Jul 24 '09 at 1:30
1  
Python doesn't have regexes? A quick 's/[a-z]\K([A-Z][a-z])/_\L$1/g; lc $_' in Perl does the job (although it does not handle getHTTPResponseCode well; but that's expected, that should be named getHttpResponseCode) – jrockway Jul 24 '09 at 1:34
5  
str.join has been deprecated for ages. Use ''.join(..) instead. – John Fouhy Jul 24 '09 at 1:49
jrockway: It does have regular expressions, via the "re" module. It shouldn't be too difficult to make this work using regex rather than the approaches posted here. – Matthew Iselin Jul 24 '09 at 1:52
show 3 more comments
feedback
''.join('_'+c.lower() if c.isupper() else c for c in "DeathToCamelCase").strip('_')
re.sub("(.)([A-Z])", r'\1_\2', 'DeathToCamelCase').lower()
link|improve this answer
feedback

A horrendous example using regular expressions (you could easily clean this up :) ):

def f(s):
    return s.group(1).lower() + "_" + s.group(2).lower()

p = re.compile("([A-Z]+[a-z]+)([A-Z]?)")
print p.sub(f, "CamelCase")
print p.sub(f, "getHTTPResponseCode")

Works for getHTTPResponseCode though!

Alternatively, using lambda:

p = re.compile("([A-Z]+[a-z]+)([A-Z]?)")
print p.sub(lambda x: x.group(1).lower() + "_" + x.group(2).lower(), "CamelCase")
print p.sub(lambda x: x.group(1).lower() + "_" + x.group(2).lower(), "getHTTPResponseCode")

EDIT: It should also be pretty easy to see that there's room for improvement for cases like "Test", because the underscore is unconditionally inserted.

link|improve this answer
feedback

Very nice RegEx proposed on this site:

(?&#60;!^)(?=[A-Z])

If python have a String Split method, it shoud work...

In Java:

String s = "loremIpsum";
words = s.split("(?&#60;!^)(?=[A-Z])");
link|improve this answer
feedback

Here's something I did to change the headers on a tab-delimited file. I'm omitting the part where I only edited the first line of the file. You could adapt it to Python pretty easily with the re library. This also includes separating out numbers (but keeps the digits together). I did it in two steps because that was easier than telling it not to put an underscore at the start of a line or tab.

Step One...find uppercase letters or integers preceded by lowercase letters, and precede them with an underscore:

Search:

([a-z]+)([A-Z]|[0-9]+)

Replacement:

\1_\l\2/

Step Two...take the above and run it again to convert all caps to lowercase:

Search:

([A-Z])

Replacement (that's backslash, lowercase L, backslash, one):

\l\1
link|improve this answer
feedback

Wow I just stole this from django snippets. ref http://djangosnippets.org/snippets/585/

Pretty elegant

camelcase_to_underscore = lambda str: re.sub('(((?<=[a-z])[A-Z])|([A-Z](?![A-Z]|$)))', '_\\1', str).lower().strip('_')

Example:

camelcase_to_underscore('ThisUser')

Returns:

'this_user'
link|improve this answer
Bad form using str as a local variable name. – freegnu May 16 '11 at 12:06
This fails miserably if there are any underscores at the beginning or end of a string and if there are any underscores before a capital letter. – freegnu May 16 '11 at 14:24
feedback

Your Answer

 
or
required, but never shown

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