RE: Quick regex prob

2003-01-23 Thread Dan Muey
n > > > Thanks for everyone's help. > > Sander > > -Original Message- > From: Dan Muey [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 23, 2003 1:09 PM > To: Rob Dixon; [EMAIL PROTECTED] > Subject: RE: Quick regex prob > > > >

RE: Quick regex prob

2003-01-23 Thread Liebert, Sander
1:09 PM To: Rob Dixon; [EMAIL PROTECTED] Subject: RE: Quick regex prob > Dan Muey wrote: > > Hiya, I'm having a brain melt right now : > > > > I do this to match one word only. > > m/^(\w+)$/) > > That matches an entire line which is just a string o

RE: Quick regex prob

2003-01-23 Thread Dan Muey
> Dan Muey wrote: > > Hiya, I'm having a brain melt right now : > > > > I do this to match one word only. > > m/^(\w+)$/) > > That matches an entire line which is just a string of 'word' > characters ( A-Z, a-z, 0-9, and underscore ). > > > What regex do I need to match multiple , unkown ammou

Re: Quick regex prob

2003-01-23 Thread Rob Dixon
Dan Muey wrote: > Hiya, I'm having a brain melt right now : > > I do this to match one word only. > m/^(\w+)$/) That matches an entire line which is just a string of 'word' characters ( A-Z, a-z, 0-9, and underscore ). > What regex do I need to match multiple , unkown ammounts of words? > Will th