vote up 2 vote down star

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"

flag

79% accept rate

3 Answers

vote up 5 vote down check

Rails' ActiveSupport adds underscore to the String using the following:

class String
   def underscore(camel_cased_word)
     camel_cased_word.to_s.gsub(/::/, '/').
       gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').
       gsub(/([a-z\d])([A-Z])/,'\1_\2').
       tr("-", "_").
       downcase
   end
end

Then you can do fun stuff:

"CamelCase".underscore
link|flag
Exactly what I wanted! Thanks – Daniel Cukier Oct 2 at 17:53
vote up 2 vote down

Here's how Rails does it:

   def underscore(camel_cased_word)
     camel_cased_word.to_s.gsub(/::/, '/').
       gsub(/([A-Z]+)([A-Z][a-z])/,'\1_\2').
       gsub(/([a-z\d])([A-Z])/,'\1_\2').
       tr("-", "_").
       downcase
   end
link|flag
Better to have the operand as a method argument rather than to invade the core String class. – Pistos Oct 2 at 14:47
vote up 0 vote down

One-liner Ruby implementation:

class String
   def to_underscore!
     self.gsub!(/(.)([A-Z])/,'\1_\2').downcase!
   end
   def to_underscore
     self = self.clone.to_underscore!
   end
end

So "SomeCamelCase".to_underscore # =>"some_camel_case"

link|flag
how are the other solutions not pure ruby? – jrhicks Oct 2 at 15:01
Oh, sh... Thanks - I was more interested in writing than in reading. As a result - links on Rails made me think those other snippets to be Rails-specific. Changed answer... – kirushik Oct 2 at 15:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.