Library: Util
Package: Options
Header: Poco/Util/RegExpValidator.h
This validator matches the option value against a regular expression.
Direct Base Classes: Validator
All Base Classes: Poco::RefCountedObject, Validator
Member Functions: validate
Inherited Functions: duplicate, referenceCount, release, validate
RegExpValidator(
    const std::string & regexp
);
Creates the RegExpValidator, using the given regular expression.
 
 ~RegExpValidator();
Destroys the RegExpValidator.
 
 void validate(
    const Option & option,
    const std::string & value
);
Validates the value for the given option by matching it with the regular expression.
See also: Poco::Util::Validator::validate()