Search::Tools::RegExp::Keyword - (**DEPRECATED**) access regular expressions for a keyword


Search-Tools documentation Contained in the Search-Tools distribution.

Index


Code Index:

NAME

Top

Search::Tools::RegExp::Keyword - (**DEPRECATED**) access regular expressions for a keyword

SYNOPSIS

Top

 # deprecated. See Search::Tools::RegEx

DESCRIPTION

Top

As of version 0.24 this class is deprecated in favor of Search::Tools::RegEx.

METHODS

Top

plain

html

word

phrase

AUTHOR

Top

Peter Karman perl@peknet.com

Based on the HTML::HiLiter regular expression building code, originally by the same author, copyright 2004 by Cray Inc.

Thanks to Atomic Learning www.atomiclearning.com for sponsoring the development of this module.

COPYRIGHT

Top

SEE ALSO

Top

HTML::HiLiter, Search::Tools::RegExp, Search::Tools::RegExp::Keywords


Search-Tools documentation Contained in the Search-Tools distribution.

package Search::Tools::RegExp::Keyword;
use strict;
use warnings;
use Carp;
use base qw( Search::Tools::Object );

our $VERSION = '0.59';

__PACKAGE__->mk_ro_accessors(qw( plain html word phrase ));

1;
__END__