KateRegExpSearch
#include <kateregexpsearch.h>
Public Member Functions | |
KateRegExpSearch (const KTextEditor::Document *document) | |
QList< KTextEditor::Range > | search (const QString &pattern, KTextEditor::Range inputRange, bool backwards=false, QRegularExpression::PatternOptions options=QRegularExpression::NoPatternOption) |
Static Public Member Functions | |
static QString | buildReplacement (const QString &text, const QStringList &capturedTexts, int replacementCounter) |
static QString | escapePlaintext (const QString &text) |
Detailed Description
Object to help to search for regexp.
This should be NO QObject, it is created to often! I measured that, if you create it 20k times to replace for example " " in a document, that takes seconds on a modern machine!
Definition at line 28 of file kateregexpsearch.h.
Constructor & Destructor Documentation
◆ KateRegExpSearch()
|
explicit |
Definition at line 151 of file kateregexpsearch.cpp.
Member Function Documentation
◆ buildReplacement()
|
static |
Returns a modified version of text where.
- escape sequences are resolved, e.g. "\\n" to "\n",
- references are resolved, e.g. "\\1" to 1st entry in capturedTexts, and
- counter sequences are resolved, e.g. "\\#...#" to replacementCounter.
- Parameters
-
text text containing escape sequences, references, and counter sequences capturedTexts list of substitutes for references replacementCounter value for replacement counter
- Returns
- resolved text
Definition at line 497 of file kateregexpsearch.cpp.
◆ escapePlaintext()
Returns a modified version of text where escape sequences are resolved, e.g.
"\\n" to "\n".
- Parameters
-
text text containing escape sequences
- Returns
- text with resolved escape sequences
Definition at line 492 of file kateregexpsearch.cpp.
◆ search()
QList< KTextEditor::Range > KateRegExpSearch::search | ( | const QString & | pattern, |
KTextEditor::Range | inputRange, | ||
bool | backwards = false, | ||
QRegularExpression::PatternOptions | options = QRegularExpression::NoPatternOption ) |
Search for the regular expression pattern
inside the range inputRange
.
If backwards
is true, the search direction will be reversed. options
is a set of QRegularExpression::PatternOptions OR flags that control certain aspects of the search, e.g. case sensitivity and if the dot "." metacharacter matches any character including a newline.
Note: Unicode support is always enabled (QRegularExpression::UseUnicodePropertiesOption). If the pattern is multi-line the QRegularExpression::MultilineOption is enabled.
- Parameters
-
pattern text to search for inputRange Range to search in backwards if true, the search will be backwards options QRegularExpression pattern options, we will internally add QRegularExpression::UseUnicodePropertiesOption
- Returns
- Vector of ranges, one for each capture group. The first range (index zero) spans the whole match. If no matches are found, the vector will contain one element, an invalid range (see Range::isValid()).
- See also
- KTextEditor::Range, QRegularExpression
Definition at line 169 of file kateregexpsearch.cpp.
The documentation for this class was generated from the following files:
Documentation copyright © 1996-2024 The KDE developers.
Generated on Mon Nov 18 2024 12:11:28 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.