Example:
>>> convert('CamelCase')
camel_case
feedback
|
|
This is pretty thorough:
Works with all these (and doesn't harm already-un-cameled versions):
Or if you're going to call it a zillion times, you can pre-compile the regexes:
| |||||||||||||
feedback
|
|
Here's my solution:
It supports those corner cases discussed in the comments. For instance, it'll convert | |||||||||||||
feedback
|
|
Not in the standard library, but I found this script that appears to contain the functionality you need. | ||||
|
feedback
|
|
For the fun of it:
Or, more for the fun of it:
| |||||||||||||||||
feedback
|
| ||||
|
feedback
|
|
A horrendous example using regular expressions (you could easily clean this up :) ):
Works for getHTTPResponseCode though! Alternatively, using lambda:
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. | ||||
|
feedback
|
|
Very nice RegEx proposed on this site:
If python have a String Split method, it shoud work... In Java:
| ||||
|
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:
Replacement:
Step Two...take the above and run it again to convert all caps to lowercase: Search:
Replacement (that's backslash, lowercase L, backslash, one):
| ||||
|
feedback
|
|
Wow I just stole this from django snippets. ref http://djangosnippets.org/snippets/585/ Pretty elegant
Example:
Returns:
| |||||
feedback
|