RegExpValidator QML Type

Provides a string validator 更多...

Import Statement: import QtQuick 2.7
Instantiates: QRegExpValidator

属性

详细描述

The RegExpValidator type provides a validator, which counts as valid any string which matches a specified regular expression.

属性

regExp : regExp

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.