API reference - Class QRegExpNotation used in Ruby API documentation Description: Binding of QRegExp Public constructors
Public methods
Public static methods and constants
Detailed description[const] bool !=(const QRegExp rx)Description: Method bool QRegExp::operator!=(const QRegExp &rx) [const] bool ==(const QRegExp rx)Description: Method bool QRegExp::operator==(const QRegExp &rx) [static] QRegExp_CaretMode CaretAtOffsetDescription: Enum constant QRegExp::CaretAtOffset [static] QRegExp_CaretMode CaretAtZeroDescription: Enum constant QRegExp::CaretAtZero [static] QRegExp_CaretMode CaretWontMatchDescription: Enum constant QRegExp::CaretWontMatch [static] QRegExp_PatternSyntax FixedStringDescription: Enum constant QRegExp::FixedString [static] QRegExp_PatternSyntax RegExpDescription: Enum constant QRegExp::RegExp [static] QRegExp_PatternSyntax RegExp2Description: Enum constant QRegExp::RegExp2 [static] QRegExp_PatternSyntax W3CXmlSchema11Description: Enum constant QRegExp::W3CXmlSchema11 [static] QRegExp_PatternSyntax WildcardDescription: Enum constant QRegExp::Wildcard [static] QRegExp_PatternSyntax WildcardUnixDescription: Enum constant QRegExp::WildcardUnix QRegExp assign(const QRegExp rx)Description: Method QRegExp &QRegExp::operator=(const QRegExp &rx) [const] void assign(const QRegExp other)Description: Assign the contents of another object to self This method assigns the contents of another object to self. This is a deep copy that does not only copy the reference but the actual content. [const] string cap(int nth = 0)Description: Method QString QRegExp::cap(int nth) string cap(int nth = 0)Description: Method QString QRegExp::cap(int nth) [const] int captureCountDescription: Method int QRegExp::captureCount() [const] string[] capturedTextsDescription: Method QStringList QRegExp::capturedTexts() string[] capturedTextsDescription: Method QStringList QRegExp::capturedTexts() [const] Qt_CaseSensitivity caseSensitivityDescription: Method Qt::CaseSensitivity QRegExp::caseSensitivity() void caseSensitivity=(const Qt_CaseSensitivity cs)Description: Method void QRegExp::setCaseSensitivity(Qt::CaseSensitivity cs) void createDescription: Ensures the C++ object is created Use this method to ensure the C++ object is created, for example to ensure that resources are allocated. Usually C++ objects are created on demand and not necessarily when the script object is created. void destroyDescription: Explicitly destroy the object Explicitly destroy the object on C++ side if it was owned by the Ruby interpreter. Subsequent access to this object will throw an exception. If the object is not owned by Ruby, this method will do nothing. [const] bool destroyed?Description: Returns a value indicating whether the object was already destroyed This method returns true, if the object was destroyed, either explicitly or by the C++ side. The latter may happen, if the object is owned by a C++ object which got destroyed itself. [const] QRegExp dupDescription: Creates a copy of self [const] string errorStringDescription: Method QString QRegExp::errorString() string errorStringDescription: Method QString QRegExp::errorString() [static] string escape(string str)Description: Static method QString QRegExp::escape(const QString &str) This method is static and can be called without an instance. [const] bool exactMatch(string str)Description: Method bool QRegExp::exactMatch(const QString &str) [const] int indexIn(string str,int offset = 0,const QRegExp_CaretMode caretMode = QRegExp::CaretAtZero)Description: Method int QRegExp::indexIn(const QString &str, int offset, QRegExp::CaretMode caretMode) [const] bool isEmptyDescription: Method bool QRegExp::isEmpty() [const] bool isEmpty?Description: Method bool QRegExp::isEmpty() [const] bool isMinimalDescription: Method bool QRegExp::isMinimal() [const] bool isMinimal?Description: Method bool QRegExp::isMinimal() [const] bool isValidDescription: Method bool QRegExp::isValid() [const] bool isValid?Description: Method bool QRegExp::isValid() [const] bool is_const_object?Description: Returns a value indicating whether the reference is a const reference This method returns true, if self is a const reference. In that case, only const methods may be called on self. [const] int lastIndexIn(string str,int offset = -1,const QRegExp_CaretMode caretMode = QRegExp::CaretAtZero)Description: Method int QRegExp::lastIndexIn(const QString &str, int offset, QRegExp::CaretMode caretMode) [const] int matchedLengthDescription: Method int QRegExp::matchedLength() void minimal=(bool minimal)Description: Method void QRegExp::setMinimal(bool minimal) [static] new QRegExp newDescription: Constructor QRegExp::QRegExp() This method creates an object of class QRegExp. [static] new QRegExp new(string pattern,const Qt_CaseSensitivity cs = Qt::CaseSensitive,const QRegExp_PatternSyntax syntax = QRegExp::RegExp)Description: Constructor QRegExp::QRegExp(const QString &pattern, Qt::CaseSensitivity cs, QRegExp::PatternSyntax syntax) This method creates an object of class QRegExp. [static] new QRegExp new(const QRegExp rx)Description: Constructor QRegExp::QRegExp(const QRegExp &rx) This method creates an object of class QRegExp. [const] int numCapturesDescription: Method int QRegExp::numCaptures() [const] string patternDescription: Method QString QRegExp::pattern() void pattern=(string pattern)Description: Method void QRegExp::setPattern(const QString &pattern) [const] QRegExp_PatternSyntax patternSyntaxDescription: Method QRegExp::PatternSyntax QRegExp::patternSyntax() void patternSyntax=(const QRegExp_PatternSyntax syntax)Description: Method void QRegExp::setPatternSyntax(QRegExp::PatternSyntax syntax) [const] int pos(int nth = 0)Description: Method int QRegExp::pos(int nth) int pos(int nth = 0)Description: Method int QRegExp::pos(int nth) void setCaseSensitivity(const Qt_CaseSensitivity cs)Description: Method void QRegExp::setCaseSensitivity(Qt::CaseSensitivity cs) void setMinimal(bool minimal)Description: Method void QRegExp::setMinimal(bool minimal) void setPattern(string pattern)Description: Method void QRegExp::setPattern(const QString &pattern) void setPatternSyntax(const QRegExp_PatternSyntax syntax)Description: Method void QRegExp::setPatternSyntax(QRegExp::PatternSyntax syntax) |