org.kde.qt
public class QRegExp extends Object implements QtSupport
Field Summary | |
---|---|
static int | CaretAtOffset |
static int | CaretAtZero |
static int | CaretWontMatch |
Constructor Summary | |
---|---|
protected | QRegExp(Class dummy) |
QRegExp() | |
QRegExp(String pattern, boolean caseSensitive, boolean wildcard) | |
QRegExp(String pattern, boolean caseSensitive) | |
QRegExp(String pattern) | |
QRegExp(QRegExp rx) |
Method Summary | |
---|---|
String | cap(int nth) |
String | cap() |
ArrayList | capturedTexts() |
boolean | caseSensitive() |
void | dispose() Delete the wrapped C++ instance ahead of finalize() |
String | errorString() |
static String | escape(String str) |
boolean | exactMatch(String str) |
protected void | finalize() Deletes the wrapped C++ instance |
boolean | isDisposed() Has the wrapped C++ instance been deleted? |
boolean | isEmpty() |
boolean | isValid() |
int | match(String str, int index, int[] len, boolean indexIsStart) |
int | match(String str, int index, int[] len) |
int | match(String str, int index) |
int | match(String str) |
int | matchedLength() |
boolean | minimal() |
int | numCaptures() |
boolean | op_equals(QRegExp rx) |
boolean | op_not_equals(QRegExp rx) |
String | pattern() |
int | pos(int nth) |
int | pos() |
int | search(String str, int offset, int caretMode) |
int | search(String str, int offset) |
int | search(String str) |
int | searchRev(String str, int offset, int caretMode) |
int | searchRev(String str, int offset) |
int | searchRev(String str) |
void | setCaseSensitive(boolean sensitive) |
void | setMinimal(boolean minimal) |
void | setPattern(String pattern) |
void | setWildcard(boolean wildcard) |
boolean | wildcard() |