aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/regularexpression.qml
blob: f08a55725b55ff1cc441d79f12740faafc97ccd1 (plain)
1
2
3
4
5
6
7
8
9
// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
//![0]
TextInput {
    id: hexNumber
    validator: RegularExpressionValidator { regularExpression: /[0-9A-F]+/ }
}
//![0]