class Poco::Util::RegExpValidator
Overview
This validator matches the option value against a regular expression. Moreā¦
#include <RegExpValidator.h> class RegExpValidator: public Poco::Util::Validator { public: // construction RegExpValidator(const std::string& regexp); // methods virtual void validate( const Option& option, const std::string& value ); };
Detailed Documentation
This validator matches the option value against a regular expression.
Construction
RegExpValidator(const std::string& regexp)
Creates the RegExpValidator, using the given regular expression.