2008年5月26日 星期一

symbol

change string to symbol:
use to_sym or intern
ex:
"test".to_sym
--->  :test

change symbol to string
method 1: use to_s
method 2: use #{ }
ex:
"#{:abc}"
---> "abc"

沒有留言: