up vote 5 down vote favorite
1
share [g+] share [fb]

I want to see if a string has any white space in it. What's the most effective way of doing this in ruby?

Thanks

link|improve this question

feedback

4 Answers

up vote 15 down vote accepted

If by "white space" you mean in the Regular Expression sense, which is any of space character, tab, newline, carriage return or (I think) form-feed, then any of the answers provided will work:

s.match(/\s/)
s.index(/\s/)
s =~ /\s/

or even (not previously mentioned)

s[/\s/]

If you're only interested in checking for a space character, then try your preference of

s.match(" ")
s.index(" ")
s =~ / /
s[" "]

From irb (Ruby 1.8.6):

s = "a b"
puts s.match(/\s/) ? "yes" : "no" #-> yes
puts s.index(/\s/) ? "yes" : "no" #-> yes
puts s =~ /\s/ ? "yes" : "no" #-> yes
puts s[/\s/] ? "yes" : "no" #-> yes

s = "abc"
puts s.match(/\s/) ? "yes" : "no" #-> no
puts s.index(/\s/) ? "yes" : "no" #-> no
puts s =~ /\s/ ? "yes" : "no" #-> no
puts s[/\s/] ? "yes" : "no" #-> no
link|improve this answer
feedback
some_string.match(/\s/)
link|improve this answer
feedback

It is usually done like this:

str =~ /\s/

You can read about regular expressions here.

link|improve this answer
feedback

you can use index

"mystring".index(/\s/)
link|improve this answer
Isn't a tab whitespace? – Eli Jan 25 '10 at 6:51
feedback

Your Answer

 
or
required, but never shown

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