Search

Hi,

I need to implment the search using Ruby . The search word is more than
one
means my program getting problem.
How can I solve that.
For example ,

I am having one file . In that file more than 100 lines are there.

I have to search some three words . The first two words there in first
line
and the another one word is there in
another one line means How can I match that 3 words.

Please any one help me…

Geetha.

I am having one file . In that file more than 100 lines are there.

I have to search some three words . The first two words there in first
line
and the another one word is there in
another one line means How can I match that 3 words.

Why don’t you try ruby regexp?

I tried your concept. But it wont escape the special character what the
regexp return.
For example ,

“widely implemented” is my search string , the regular expression return
like
(?-mix:widely\\s+ ).

So while the time of matching it had a problem.
So I am working on that.