Example:
>>> convert('CamelCase')
camel_case
|
1
|
|||
|
|
|
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:
|
|||
|
|
|
|
Not in the standard library, but I found this script that appears to contain the functionality you need. |
|||
|
|
|
|
For the fun of it:
Or, more for the fun of it:
|
||||||||||||||
|
|
|
|
|||
|
|
|
|
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. |
|||
|
|
|
|
Here's my solution:
It supports those corner cases discussed in the comments. For instance, it'll convert |
||||||
|