summaryrefslogtreecommitdiffstats
path: root/src/corelib/doc/snippets/code/src_corelib_text_qstaticlatin1stringmatcher.cpp
blob: ae6e19e471563638011f1d9e3c87c1a6526d268b (plain)
1
2
3
4
5
6
7
8
// Copyright (C) 2023 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
//! [0]
static constexpr auto matcher = qMakeStaticCaseSensitiveLatin1StringViewMatcher("needle");
//! [0]
//! [1]
static constexpr auto matcher = qMakeStaticCaseInsensitiveLatin1StringViewMatcher("needle");
//! [1]