summaryrefslogtreecommitdiffstats
path: root/src/corelib/text/qregularexpression.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@qt.io>2020-04-15 10:52:51 +0200
committerLars Knoll <lars.knoll@qt.io>2020-05-06 09:57:40 +0200
commitadf829e65d0837c043dbfdfaba49dd145debe954 (patch)
treec45291cbe4ff82b9ec2d5f2ae008066b839dfd1a /src/corelib/text/qregularexpression.cpp
parent56a7984a90992371cd7f54a061dcc791e6f22cfd (diff)
Add a QRegularExpression::fromWildcard() convenience method
Simplify constructing QRegularExpression objects from a glob pattern. Change-Id: I06f60b1dfea3da969e2474dedd44b6ca5d456d7d Reviewed-by: Simon Hausmann <hausmann@gmail.com> Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'src/corelib/text/qregularexpression.cpp')
-rw-r--r--src/corelib/text/qregularexpression.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/corelib/text/qregularexpression.cpp b/src/corelib/text/qregularexpression.cpp
index 6b81f5cc79..25e2169b06 100644
--- a/src/corelib/text/qregularexpression.cpp
+++ b/src/corelib/text/qregularexpression.cpp
@@ -1935,6 +1935,25 @@ QString QRegularExpression::wildcardToRegularExpression(QStringView pattern, Wil
return rx;
}
+/*!
+ \since 6.0
+ Returns a regular expression of the glob pattern \a pattern.
+
+ Equivalent to
+ \code
+ auto reOptions = cs == Qt::CaseSensitive ? QRegularExpression::NoPatternOption :
+ QRegularExpression::CaseInsensitiveOption;
+ return QRegularExpression(wildcardToRegularExpression(str, options), reOptions);
+ \endcode
+*/
+QRegularExpression QRegularExpression::fromWildcard(QStringView str, Qt::CaseSensitivity cs,
+ WildcardConversionOptions options)
+{
+ auto reOptions = cs == Qt::CaseSensitive ? QRegularExpression::NoPatternOption :
+ QRegularExpression::CaseInsensitiveOption;
+ return QRegularExpression(wildcardToRegularExpression(str, options), reOptions);
+}
+
#if QT_STRINGVIEW_LEVEL < 2
/*!
\fn QRegularExpression::anchoredPattern(const QString &expression)