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.
Of course, for a real text search, you'll probably want to do some
stemming and normalisation, but I don't think that's what you were
asking about.
Does that help?
Paul.
···
On 19/06/07, geetha <sangeetha.geethu05@gmail.com> wrote:
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.
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.
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.
···
On 6/20/07, Noorul Islam K M <gnukid@gmail.com> wrote:
> 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.