Example:
>>> convert('CamelCase')
camel_case
|
|
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:
|
|||||||||||||||
|
|
I don't get idea why using both .sub() calls? :) I'm not regex guru, but I simplified function to this one, which is suitable for my certain needs, I just needed a solution to convert camelCasedVars from POST request to vars_with_underscore:
It does not work with such names like getHTTPResponse, cause I heard it is bad naming convention (should be like getHttpResponse, it's obviously, that it's much easier memorize this form). |
||||
|
|
For the fun of it:
Or, more for the fun of it:
|
|||||||||||||||||
|
|
||||
|
|
|
Here's my solution:
It supports those corner cases discussed in the comments. For instance, it'll convert |
|||||||||||||||
|
|
Not in the standard library, but I found this script that appears to contain the functionality you need. |
||||
|
|
|
I don't know why these are all so complicating. for most cases the simple expression
To ignore the first charachter simply add look behind
If you want to separate ALLCaps to all_caps and expect numbers in your string you still don't need to do two separate runs just use
It all depends on what you want so use the solution that best fits your needs as it should not be overly complicated. nJoy! |
||||
|
|
|
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. |
||||
|
|
|
Very nice RegEx proposed on this site:
If python have a String Split method, it shoud work... In Java:
|
||||
|
|
|
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):
|
||||
|
|
|
I have had pretty good luck with this one:
This could obviously be optimized for speed a tiny bit if you want to.
|
||||
|
|
|
I was looking for a solution to the same problem, except that I needed a chain; e.g.
Starting from the nice two-word solutions here, I came up with the following:
Most of the complicated logic is to avoid lowercasing the first word. Here's a simpler version if you don't mind altering the first word:
Of course, you can pre-compile the regular expressions or join with underscore instead of hyphen, as discussed in the other solutions. |
||||
|
|
|
This is not a elegant method, is a very 'low level' implementation of a simple state machine (bitfield state machine), possibly the most anti pythonic mode to resolve this, however re module also implements a too complex state machine to resolve this simple task, so i think this is a good solution.
splitsymbol can parses all case types: UpperSEQUENCEInterleaved, under_score, BIG_SYMBOLS and cammelCasedMethods I hope it is useful |
||||
|
|
|
Wow I just stole this from django snippets. ref http://djangosnippets.org/snippets/585/ Pretty elegant
Example:
Returns:
|
||||