Provides a string validator. 更多...
import 语句: | import QtQuick |
实例化: | QRegularExpressionValidator |
The RegularExpressionValidator type provides a validator, that counts as valid any string which matches a specified regular expression.
另请参阅 IntValidator , DoubleValidator ,和 Validating Input Text .
[read-only] regularExpression : regularExpression |
This property holds the regular expression used for validation.
Note that this property should be a regular expression in JS syntax, e.g /a/ for the regular expression matching "a".
By default, this property contains a regular expression with the pattern
.*
that matches any string.
Below you can find an example of a TextInput object with a RegularExpressionValidator specified:
TextInput { id: hexNumber validator: RegularExpressionValidator { regularExpression: /[0-9A-F]+/ } }
Some more examples of regular expressions:
/\d{1,3}(?:,\d{1,3})+$/
/(\d{1,3})([.,]\d{1,2})?$/