Is there any ready function which converts camel case Strings into underscore separated string?
I want something like this:
"CamelCaseString".to_underscore
to return "camel_case_string".
...
|
Is there any ready function which converts camel case Strings into underscore separated string? I want something like this:
to return "camel_case_string". ... |
|||||
|
|
Rails' ActiveSupport adds underscore to the String using the following:
Then you can do fun stuff:
|
|||||||||||||||
|
|
One-liner Ruby implementation:
So |
|||||||||||||||||
|
|
Here's how Rails does it:
|
|||||||||||||||
|
|
Receiver converted to snake case: http://rubydoc.info/gems/extlib/0.9.15/String#snake_case-instance_method This is the Support library for DataMapper and Merb. (http://rubygems.org/gems/extlib)
|
|||
|
|