The easiest way to separate substrings from a line string

  • Thread starter Sarawut Poaitwinyu
  • Start date
S

Sarawut Poaitwinyu

I have working on tag system and There is information like this

"important urgent project 2009"

i want to seperate into word, one word at the time is okay

What is the easiest way to separate those string word by word, space
between each word might has more than 1.

My idea is to use loop to check character by character that it is space
or not, and then cut the part, but i thought it might have easier way
that i don't know

Thank you in advance
 
D

David A. Black

Hi --

I have working on tag system and There is information like this

"important urgent project 2009"

i want to seperate into word, one word at the time is okay

What is the easiest way to separate those string word by word, space
between each word might has more than 1.

My idea is to use loop to check character by character that it is space
or not, and then cut the part, but i thought it might have easier way
that i don't know

words = string.split

When you call split with no argument, it splits on whitespace
(including more than one character).


David

--
David A. Black / Ruby Power and Light, LLC
Ruby/Rails consulting & training: http://www.rubypal.com
Now available: The Well-Grounded Rubyist (http://manning.com/black2)
Training! Intro to Ruby, with Black & Kastner, September 14-17
(More info: http://rubyurl.com/vmzN)
 
T

Thriving K.

David said:
Hi --



words = string.split

When you call split with no argument, it splits on whitespace
(including more than one character).


David



Thank you , i will try
 
R

Robert Klemme

2009/7/9 David A. Black said:
Hi --



=A0words =3D string.split

When you call split with no argument, it splits on whitespace
(including more than one character).

I am more like the "positive" guy - meaning explicitly defining what I
want returned. I would do

words =3D string.scan /\w+/

That way dot, question mark and other signs won't hurt. It may not
make a difference but it's probably good to see different approaches.

Kind regards

robert


--=20
remember.guy do |as, often| as.you_can - without end
http://blog.rubybestpractices.com/
 
R

Robert Klemme

2009/7/9 David A. Black said:
string.split does explicitly define what I want back; it's just
something different from what you want back :)

That's true. I just wanted to make the point that there are these two
major approaches: define positively what you want in your result or
define it ex negativo, i.e. state what you want to use as separator.

The whole point is that both approaches may behave identical with the
original set of test data but will exhibit different behavior as soon
as the input changes. If you use #split, you might get something you
did not want in the first place. With #scan you won't notice - which
could be bad as well.

The super safe variant would be to first do a match on the whole
string to ensure it does contain expected data only and fail if not.
After that it does not matter any more what extraction method one
uses.
It depends exactly how
you define "word". I was assuming it was /\S+/ but it may indeed be
/\w+/ (or maybe /[^\W\d_]+/ or something).

Absolutely.

Kind regards

robert

--=20
remember.guy do |as, often| as.you_can - without end
http://blog.rubybestpractices.com/
 
T

Thriving K.

Thank you for everyone again, it seems that you guys discussed sort of
regular expression that i didn't understand but thank you for it anyone,
i will try to research about it later
 
D

Dave Burt

Moving said:
... /\w+/ (or maybe /[^\W\d_]+/ or something).

Do people actually say /[^\W\d_]/ instead of /[a-z]/i? The latter is
much easier for me to read. Does the former include non-latin
word-characters?

Cheers,
Dave Burt
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,754
Messages
2,569,527
Members
45,000
Latest member
MurrayKeync

Latest Threads

Top