Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm new to Python and I am trying to replace all uppercase-letters within a word to underscores, for example:

ThisIsAGoodExample

should become

this_is_a_good_example

Any ideas/tips/links/tutorials on how to achieve this?

share|improve this question
2  
What have you tried so far? – Wooble Sep 6 '11 at 15:06
3  
The example you give matches neither the title nor the description of this question. Are you trying to replace all uppercase characters with underscores or are you trying to convert CamelCase to lowercase_underscore_separated? You'll find that unless you can explain in words what it is you want to do, solving it in Python (or any other language) is going to be too challenging. – Johnsyweb Sep 13 '11 at 21:44

6 Answers

import re
"_".join(l.lower() for l in re.findall('[A-Z][^A-Z]*', 'ThisIsAGoodExample'))

EDIT: Actually, this only works, if the first letter is uppercase. Otherwise this (taken from here) does the right thing:

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()
share|improve this answer
Take it easy on the newbie. :) – Tyler Crompton Sep 6 '11 at 15:21

Here's a regex way:

import re
example = "ThisIsAGoodExample"
print re.sub( '(?<!^)(?=[A-Z])', '_', example ).lower()

This is saying, "Find points in the string that aren't preceeded by a start of line, and are followed by an uppercase character, and substitute an underscore. Then we lower()case the whole thing.

share|improve this answer
That misses a lot of uppercase letters. It wouldn't handle one spelling of my name, "Éric", for example. IIRC, \p{Lu} is the appropriate pattern, not [A-Z]. – ikegami Sep 6 '11 at 17:17
example = 'ThisIsAGoodExample'
# Don't put an underscore before first character.
new_example = example[0]
for character in example[1:]:
    # Append an underscore if the character is uppercase.
    if character.isupper():
        new_example += '_'
    new_example += character.lower()
share|improve this answer
1  
Replace line 6 with if character.isupper() which (should) handle unicode, too. – Kirk Strauser Sep 6 '11 at 16:06
@Kirk, Thanks. Fixed. – Tyler Crompton Sep 6 '11 at 21:29

Parse your string, each time you encounter an upper case letter, insert an _ before it and then switch the found character to lower case

share|improve this answer
(except the first one) – rplnt Sep 6 '11 at 15:13
What about the first uppercase character? – Johnsyweb Sep 6 '11 at 15:14
@rplnt - Since his verbiage doesn't match his example, I went with verbiage – KevinDTimm Sep 6 '11 at 15:14
@KevinDTimm: Well, he wrote "within a word" which I read as "in the middle of a word". – Tim Pietzcker Sep 6 '11 at 15:21
1  
He also didn't say anything about converting to lowercase - his verbiage really should have converted ThisIsAGoodExample to _his_s__ood_xample – KevinDTimm Sep 6 '11 at 15:30
show 1 more comment

As no-one else has offered a solution using a generator, here's one:

>>> sample = "ThisIsAGoodExample"
>>> def upperSplit(data):
...   buff = ''
...   for item in data:
...     if item.isupper():
...       if buff:
...         yield buff
...         buff = ''
...     buff += item
...   yield buff
...
>>> list(upperSplit(sample))
['This', 'Is', 'A', 'Good', 'Example']
>>> "_".join(upperSplit(sample)).lower()
'this_is_a_good_example'
share|improve this answer

This generates a list of items, where each item is "_" followed by the lowercased letter if the character was originally an uppercase letter, or the character itself if it wasn't. Then it joins them together into a string and removes any leading underscores that might have been added by the process:

print ''.join('_' + char.lower() if char.isupper() else char
              for char in inputstring).lstrip('_')

BTW, you haven't specified what to do with underscores that are already present in the string. I wasn't sure how to handle that case so I punted.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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