RE: Stackoverflow error

2005-12-28 Thread patils
Hi Kevin Using [-+]DATA\s(.*)$ fails to parse If I use .* as the regular expression it still gives stackoverflow message. Sujata Patil, "Rodgers, Kevin" <[EMAIL PROTECTED]> 12/28/2005 02:23 PM Please respond to "Regexp Users List" To "Regexp Users List&

RE: Stackoverflow error

2005-12-28 Thread Rodgers, Kevin
[EMAIL PROTECTED] writes: > I have to parse the following strings > > -DATA datavalue > +DATA datavalue > > I am using the following regular expression > ^{?:\+\\-)DATA\s*(.*)$ ^ | should be ( > This gives stack overflow if the string is more than 3.6k > > Do you have any recommendations