Jeff 'japhy' Pinyan wrote: > >On Aug 14, Perry, Alan said: > >>So, /[\s\S]/ would match a "\n", while /./ would not. The equivalent of >>/[\s\S]/, using period notation, would be /[.\n]/ > >Not so much; the . in a character class matches just itself.
You are correct, I forgot about that. You could use /.|\n/ ... That should work. -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]