
Signature
Roedy Green Canadian Mind Products
The Java Glossary
http://mindprod.com
On Aug 9, 10:14 pm, Roedy Green <see_webs...@mindprod.com.invalid>
wrote:
> > What is the
> >metacharacter to represent any ascii character other than whitespaces.
[quoted text clipped - 5 lines]
> Roedy Green Canadian Mind Products
> The Java Glossaryhttp://mindprod.com
\S+ matches the whole line. I get the original string as the match.
Michael Jung - 10 Aug 2007 07:39 GMT
> On Aug 9, 10:14 pm, Roedy Green <see_webs...@mindprod.com.invalid>
> wrote:
[quoted text clipped - 8 lines]
> > The Java Glossaryhttp://mindprod.com
> \S+ matches the whole line. I get the original string as the match.
Split the beast on | first. Or do \d=[^|]+
Michael
dhina - 10 Aug 2007 12:25 GMT
> dhinakar...@yahoo.com writes:
> > On Aug 9, 10:14 pm, Roedy Green <see_webs...@mindprod.com.invalid>
[quoted text clipped - 13 lines]
>
> Michael
\d=[^|]+ works.
Thanks for the help.
Dhina