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?
|
EDIT: Actually, this only works, if the first letter is uppercase. Otherwise this (taken from here) does the right thing:
|
||||
|
|
|
Here's a regex way:
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. |
||||
|
|
|||||||
|
|
Parse your string, each time you encounter an upper case letter, insert an _ before it and then switch the found character to lower case |
|||||||||||||
|
|
As no-one else has offered a solution using a generator, here's one:
|
|||
|
|
|
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:
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. |
|||
|
|