Ruby/String/Convert to Symbol

Материал из Wiki.crossplatform.ru

(Различия между версиями)
Перейти к: навигация, поиск
м (1 версия)
 

Текущая версия на 17:56, 13 сентября 2010

The value of the string, not its name, becomes the symbol

play = "this is a test".intern



To convert a string into a symbol (Symbol class), use either the to_sym or intern methods

"name".intern # => :name
"name".to_sym # => :name