aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/doc/snippets/qml/regularexpression.qml
blob: a38dec48f2b29e8beac4c991d8a407ab9d83bf25 (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 2.14
//![0]
TextInput {
    id: hexNumber
    validator: RegularExpressionValidator { regularExpression: /[0-9A-F]+/ }
}
//![0]