Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Symbols are usually represented as such

:book_author_title

but if I have a string:

"Book Author Title"

is there a built in way in rails/ruby to convert it into a symbol where I can use the : notation without just doing a raw string regex replace?

share|improve this question

4 Answers

up vote 82 down vote accepted

Rails got ActiveSupport::CoreExtensions::String::Inflections module that provides such methods. They're all worth looking at. For your example:

'Book Author Title'.parameterize.underscore.to_sym
share|improve this answer
this works really well! you could have any words weather or not they where Capitalized. the parameterize will sort it out. – TheLegend Apr 18 '12 at 14:00

from: http://ruby-doc.org/core/classes/String.html#M000809

str.intern => symbol
str.to_sym => symbol

Returns the Symbol corresponding to str, creating the symbol if it did not previously exist. See Symbol#id2name.

"Koala".intern         #=> :Koala
s = 'cat'.to_sym       #=> :cat
s == :cat              #=> true
s = '@cat'.to_sym      #=> :@cat
s == :@cat             #=> true

This can also be used to create symbols that cannot be represented using the :xxx notation.

'cat and dog'.to_sym   #=> :"cat and dog"

But for your example ...

"Book Author Title".gsub(/\s+/, "_").downcase.to_sym

should go ;)

share|improve this answer
Brilliant examples. Thank you. – Paul Oct 5 '12 at 9:51

In Rails you can do this using underscore method:

"Book Author Title".delete(' ').underscore.to_sym
=> :book_author_title

The simpler code is using regex (works with Ruby):

"Book Author Title".downcase.gsub(/\s+/, "_").to_sym
=> :book_author_title
share|improve this answer
1  
this will only work if all the words start with a capital, if it was "my fat Dog" it will return :myfat_dog. – TheLegend Apr 18 '12 at 13:57
"Book Author Title".parameterize('_').to_sym
=> :book_author_title

http://api.rubyonrails.org/classes/ActiveSupport/Inflector.html#method-i-parameterize

parameterize is a rails method, and it lets you choose what you want the separator to be. It is a dash "-" by default.

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.