API reference - Class QRegExpNotation used in Ruby API documentation Description: Binding of QRegExp Sub-classes: CaretMode, PatternSyntax
Public constructors
Public methods
Public static methods and constants
Deprecated methods (protected, public, static, non-static and constructors)
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,const] new QRegExp_CaretMode ptr CaretAtOffsetDescription: Enum constant QRegExp::CaretAtOffset [static,const] new QRegExp_CaretMode ptr CaretAtZeroDescription: Enum constant QRegExp::CaretAtZero [static,const] new QRegExp_CaretMode ptr CaretWontMatchDescription: Enum constant QRegExp::CaretWontMatch [static,const] new QRegExp_PatternSyntax ptr FixedStringDescription: Enum constant QRegExp::FixedString [static,const] new QRegExp_PatternSyntax ptr RegExpDescription: Enum constant QRegExp::RegExp [static,const] new QRegExp_PatternSyntax ptr RegExp2Description: Enum constant QRegExp::RegExp2 [static,const] new QRegExp_PatternSyntax ptr W3CXmlSchema11Description: Enum constant QRegExp::W3CXmlSchema11 [static,const] new QRegExp_PatternSyntax ptr WildcardDescription: Enum constant QRegExp::Wildcard [static,const] new QRegExp_PatternSyntax ptr WildcardUnixDescription: Enum constant QRegExp::WildcardUnix void _assign(const QRegExp other)Description: Assigns another object to self 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 destroys the object Explicitly destroys the object on C++ side if it was owned by the script interpreter. Subsequent access to this object will throw an exception. If the object is not owned by the script, 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] 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. void _manageDescription: Marks the object as managed by the script side. After calling this method on an object, the script side will be responsible for the management of the object. This method may be called if an object is returned from a C++ function and the object is known not to be owned by any C++ instance. If necessary, the script side may delete the object if the script's reference is no longer required. Usually it's not required to call this method. It has been introduced in version 0.24. void _unmanageDescription: Marks the object as no longer owned by the script side. Calling this method will make this object no longer owned by the script's memory management. Instead, the object must be managed in some other way. Usually this method may be called if it is known that some C++ object holds and manages this object. Technically speaking, this method will turn the script's reference into a weak reference. After the script engine decides to delete the reference, the object itself will still exist. If the object is not managed otherwise, memory leaks will occur. Usually it's not required to call this method. It has been introduced in version 0.24. QRegExp assign(const QRegExp rx)Description: Method QRegExp &QRegExp::operator=(const QRegExp &rx) [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() Python specific notes:The object exposes a readable attribute 'caseSensitivity'. This is the getter. void caseSensitivity=(const Qt_CaseSensitivity cs)Description: Method void QRegExp::setCaseSensitivity(Qt::CaseSensitivity cs) Python specific notes:The object exposes a writable attribute 'caseSensitivity'. This is the setter. void createDescription: Ensures the C++ object is created Use of this method is deprecated. Use _create instead void destroyDescription: Explicitly destroys the object Use of this method is deprecated. Use _destroy instead [const] bool destroyed?Description: Returns a value indicating whether the object was already destroyed Use of this method is deprecated. Use _destroyed? instead [const] new QRegExp ptr 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 isEmpty?Description: Method bool QRegExp::isEmpty() [const] bool isMinimal?Description: Method bool QRegExp::isMinimal() Python specific notes:The object exposes a readable attribute 'minimal'. This is the getter. [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 Use of this method is deprecated. Use _is_const_object? instead [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() [const] bool minimalDescription: Method bool QRegExp::isMinimal() Python specific notes:The object exposes a readable attribute 'minimal'. This is the getter. void minimal=(bool minimal)Description: Method void QRegExp::setMinimal(bool minimal) Python specific notes:The object exposes a writable attribute 'minimal'. This is the setter. [static] new QRegExp newDescription: Constructor QRegExp::QRegExp() This method creates an object of class QRegExp. Python specific notes:This method is the default initializer of the object [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. Python specific notes:This method is the default initializer of the object [static] new QRegExp new(const QRegExp rx)Description: Constructor QRegExp::QRegExp(const QRegExp &rx) This method creates an object of class QRegExp. Python specific notes:This method is the default initializer of the object [const] int numCapturesDescription: Method int QRegExp::numCaptures() [const] string patternDescription: Method QString QRegExp::pattern() Python specific notes:The object exposes a readable attribute 'pattern'. This is the getter. void pattern=(string pattern)Description: Method void QRegExp::setPattern(const QString &pattern) Python specific notes:The object exposes a writable attribute 'pattern'. This is the setter. [const] QRegExp_PatternSyntax patternSyntaxDescription: Method QRegExp::PatternSyntax QRegExp::patternSyntax() Python specific notes:The object exposes a readable attribute 'patternSyntax'. This is the getter. void patternSyntax=(const QRegExp_PatternSyntax syntax)Description: Method void QRegExp::setPatternSyntax(QRegExp::PatternSyntax syntax) Python specific notes:The object exposes a writable attribute 'patternSyntax'. This is the setter. [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) Python specific notes:The object exposes a writable attribute 'caseSensitivity'. This is the setter. void setMinimal(bool minimal)Description: Method void QRegExp::setMinimal(bool minimal) Python specific notes:The object exposes a writable attribute 'minimal'. This is the setter. void setPattern(string pattern)Description: Method void QRegExp::setPattern(const QString &pattern) Python specific notes:The object exposes a writable attribute 'pattern'. This is the setter. void setPatternSyntax(const QRegExp_PatternSyntax syntax)Description: Method void QRegExp::setPatternSyntax(QRegExp::PatternSyntax syntax) Python specific notes:The object exposes a writable attribute 'patternSyntax'. This is the setter. |