Is there something faster than .|[\r\n] in RegExp ?

  • Thread starter Thread starter N k via DotNetMonster.com
  • Start date Start date
N said:
Is there something faster than .|[\r\n] in Regular Expressions ?

To do what? match EVERYTHING? You can try: [.\n] as '.' already matches
\r. You can also use simple '.' and a multiline regular expression :)

Frans
 
Back
Top