Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

String.to_sym?

28 views
Skip to first unread message

robertj

unread,
Dec 12, 2005, 10:10:07 AM12/12/05
to
hi,

is there a String#to_sym method anywhere in the
statndard lib? i couldnt find anything like that
but maybe i missed it.

its easy enough to write

class String
def to_sym
eval ":#{self}"
end
end

just want to check if its there already.

ciao robertj

Mark J. Reed

unread,
Dec 12, 2005, 10:25:15 AM12/12/05
to
"robertj" <robert...@yahoo.com> writes:

>hi,

>is there a String#to_sym method anywhere in the
>statndard lib? i couldnt find anything like that
>but maybe i missed it.

It's called "intern", because Ruby internalizes the string into a symbol.
And it's rather more efficient than the eval method you propose.

irb(main):001:0> "somestring".intern
=> :somestring

no...@ruby-lang.org

unread,
Dec 12, 2005, 10:34:30 AM12/12/05
to
Hi,

At Tue, 13 Dec 2005 00:27:38 +0900,
Mark J.Reed wrote in [ruby-talk:170247]:


> >is there a String#to_sym method anywhere in the
> >statndard lib? i couldnt find anything like that
> >but maybe i missed it.
>
> It's called "intern", because Ruby internalizes the string into a symbol.

String#to_sym is also an alias in 1.8 or later.

--
Nobu Nakada


men...@rydia.net

unread,
Dec 12, 2005, 1:03:53 PM12/12/05
to
Quoting robertj <robert...@yahoo.com>:

> hi,
>
> is there a String#to_sym method anywhere in the
> statndard lib? i couldnt find anything like that
> but maybe i missed it.

If you've got a reasonably recent version of Ruby, yes. I don't
know about 1.6 or earlier.

> its easy enough to write
>
> class String
> def to_sym
> eval ":#{self}"
> end
> end

If you had to write one yourself, you'd want:

class String
alias to_sym intern
end

eval'ing ":#{self}" won't work if the string has spaces or anything
like that. In general, eval'ing strings should be an absolute last
resort in code, because it is very difficult to make reliable.

-mental


Trans

unread,
Dec 12, 2005, 1:25:21 PM12/12/05
to
Hmm... What version of Ruby are you using? You should be able to use
String#to_sym presently.

Originally the method for doing so was #intern. Though I haven't heard
any specific verbage to the effect from offical sources, I would highly
recommend never using #intern again. Use #to_sym instead.

T.

Christian Neukirchen

unread,
Dec 12, 2005, 3:06:08 PM12/12/05
to
men...@rydia.net writes:

> Quoting robertj <robert...@yahoo.com>:
>
>> hi,
>>
>> is there a String#to_sym method anywhere in the
>> statndard lib? i couldnt find anything like that
>> but maybe i missed it.
>
> If you've got a reasonably recent version of Ruby, yes. I don't
> know about 1.6 or earlier.
>
>> its easy enough to write
>>
>> class String
>> def to_sym

eval ":#{dump}"
>> end


>> end
>
> eval'ing ":#{self}" won't work if the string has spaces or anything
> like that. In general, eval'ing strings should be an absolute last
> resort in code, because it is very difficult to make reliable.
>
> -mental
>

--
Christian Neukirchen <chneuk...@gmail.com> http://chneukirchen.org


robertj

unread,
Dec 13, 2005, 5:28:08 AM12/13/05
to
hi,

obviously its there IF you try to call it.
prblem on my side was that i looked in the docs
http://www.ruby-doc.org/docs/ProgrammingRuby/
and there is no mention of #to_sym anywhere
so i thought its no available.
my fault :-)

ciao robertj

Trans

unread,
Dec 13, 2005, 9:39:29 AM12/13/05
to

I see. FYI for the future. The best place to check first is always
using ri:

$ ri to_sym

More than one method matched your request. You can refine
your search by asking for information on one of:

Fixnum#to_sym, String#to_sym, Symbol#to_sym

$ ri String#to_sym

...

T.

0 new messages