Is there any ready function which converts camel case Strings into underscore separated string? I want something like this
"CamelCaseString".to_undescore
to return "camel_case_string"
|
|
Is there any ready function which converts camel case Strings into underscore separated string? I want something like this "CamelCaseString".to_undescore to return "camel_case_string"
|
||
|
|
|
|
Rails' ActiveSupport adds underscore to the String using the following:
Then you can do fun stuff:
|
|||
|
|
|
Here's how Rails does it:
|
||
|
|
|
One-liner Ruby implementation:
So |
|||