From 4bf55f979f5a7f9af0edcf601a099def6b218050 Mon Sep 17 00:00:00 2001 From: Giuseppe D'Angelo Date: Thu, 6 Sep 2012 17:52:05 +0100 Subject: Fix QRegularExpression* docs A couple of runaway backslashes resulted in illegal code in the examples. Change-Id: Ib00d4e1d792e44bb73dafdd84c3a1843dcb34e27 Reviewed-by: Qt Doc Bot Reviewed-by: Robin Burchell --- .../doc/snippets/code/src_corelib_tools_qregularexpression.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/corelib/doc/snippets/code/src_corelib_tools_qregularexpression.cpp b/src/corelib/doc/snippets/code/src_corelib_tools_qregularexpression.cpp index cab89d9c9e..2a40629dcb 100644 --- a/src/corelib/doc/snippets/code/src_corelib_tools_qregularexpression.cpp +++ b/src/corelib/doc/snippets/code/src_corelib_tools_qregularexpression.cpp @@ -267,7 +267,7 @@ for (int i = 0; i <= match.lastCapturedIndex(); ++i) { //! [28] //! [29] -QRegularExpression("(\d\d) (?\w+)"); +QRegularExpression("(\\d\\d) (?\\w+)"); QRegularExpressionMatch match = re.match("23 Jordan"); if (match.hasMatch()) { QString number = match.captured(1); // first == "23" @@ -277,7 +277,7 @@ if (match.hasMatch()) { //! [30] // extracts the words -QRegularExpression re("(\w+)"); +QRegularExpression re("(\\w+)"); QString subject("the quick fox"); QRegularExpressionMatchIterator i = re.globalMatch(subject); while (i.hasNext()) { -- cgit v1.2.3