Re: Regular Expression - Search for Form Feed

2003-01-21 Thread John W. Krahn
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

RE: Regular Expression - Search for Form Feed

2003-01-21 Thread Wagner, David --- Senior Programmer Analyst --- WGO
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 ;) *