RE: Regex searches including spaces

2003-10-23 Thread Perry, Alan
Paul Harwood wrote: >I am trying to parse through the following line: > >TUITimer> TUI Dead Air Timer::1828ms:: > >I want to extract the 1828 value. The regex I have is: > >if ( /TUI Dead Air(\d+)/ ) { > >I know this is wrong but I have tried every variation >of \s that I can think of with no su

Re: Regex searches including spaces

2003-10-23 Thread Gary Stainburn
On Thursday 23 Oct 2003 1:03 am, Paul Harwood wrote: > I am trying to parse through the following line: > > TUITimer> TUI Dead Air Timer::1828ms:: > > I want to extract the 1828 value. The regex I have is: > > if ( /TUI Dead Air(\d+)/ ) { > > I know this is wrong but I have tried every variation of