| 959 | // ***** Endpoint for ValidatorRegularExpression ****** |
| 960 | C_ATTR(regex, :Local :AutoArgs) |
| 961 | void regex(Context *c) |
| 962 | { |
| 963 | Validator v({new ValidatorRegularExpression( |
| 964 | u"field"_s, |
| 965 | QRegularExpression(u"^(\\d\\d)/(\\d\\d)/(\\d\\d\\d\\d)$"_s), |
| 966 | m_validatorMessages)}); |
| 967 | checkResponse(c, v.validate(c)); |
| 968 | } |
| 969 | |
| 970 | // ***** Endpoint for ValidatorRequired ****** |
| 971 | C_ATTR(required, :Local :AutoArgs) |