Paul Kraus wrote:
>
> How can I search for form feed. I have tried
>
> /\f/
>
> But I realize that the regexp engine doesn't use \f
Yes it does. /\f/ should work.
John
--
use Perl;
program
fulfillment
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PRO
Paul Kraus wrote:
> How can I search for form feed. I have tried
>
> /\f/
>
> But I realize that the regexp engine doesn't use \f
But it does! page 72, Mastering Regular Expressions, Friedl.
Usually maps to ASCII character, 014 octal.
Wags ;)
*