Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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".

...

share|improve this question
14  
FYI: lowercase and underscored is "officially" called snake case – Andrew Apr 28 '11 at 17:04

4 Answers

up vote 90 down vote accepted

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

class String
  def underscore
    self.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
share|improve this answer
2  
Exactly what I wanted! Thanks – Daniel Cukier Oct 2 '09 at 17:53
1  
Why do you specify argument camel_cased_word? I think you should use self instead. – Semyon Perepelitsa Nov 5 '10 at 15:12
thx Semyon ... I fixed it. – jrhicks Nov 8 '10 at 22:51
1  
so freaking badass! – Codeglot Jul 5 '11 at 20:47

One-liner Ruby implementation:

class String
   # ruby mutation methods have the expectation to return self if a mutation occurred, nil otherwise. (see http://www.ruby-doc.org/core-1.9.3/String.html#method-i-gsub-21)
   def to_underscore!
     gsub!(/(.)([A-Z])/,'\1_\2') && downcase!
   end

   def to_underscore
     dup.tap { |s| s.to_underscore! }
   end
end

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

share|improve this answer
how are the other solutions not pure ruby? – jrhicks Oct 2 '09 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 '09 at 15:16
1  
short and sweet – Seamus Abshere Sep 7 '12 at 22:56
1  
there is another error in my edit, and it doesn't appear that I can fix it. Here is the corrected code: gist.github.com/4027440 – Tim Harper Nov 6 '12 at 20:50
2  
You may want to consider /([^A-Z])([A-Z]+)/ instead, to handle "ALLCAPS" -> "allcaps" instead of "a_ll_ca_ps" – Nevir Dec 18 '12 at 4:34
show 1 more comment

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
share|improve this answer
Better to have the operand as a method argument rather than to invade the core String class. – Pistos Oct 2 '09 at 14:47
1  
Don't agree - better to have it operating on the class like it should be, or otherwise you will have to stick it in a module and remember to include it wherever you will need it. – Ghoti Mar 15 '11 at 15:29
1  
Also this method is part of Rails 3's strings anyway :) – Ghoti Mar 15 '11 at 15:45
2  
If I may jump in to this debate -- Better to have it invade the string class when you include it =). – Evan Moran Apr 13 '12 at 21:59

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)

def snake_case
  return downcase if match(/\A[A-Z]+\z/)
  gsub(/([A-Z]+)([A-Z][a-z])/, '\1_\2').
  gsub(/([a-z])([A-Z])/, '\1_\2').
  downcase
end

"FooBar".snake_case           #=> "foo_bar"
"HeadlineCNNNews".snake_case  #=> "headline_cnn_news"
"CNN".snake_case              #=> "cnn"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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