Skip to content

Latest commit

 

History

History
86 lines (50 loc) · 4.06 KB

class_regexmatch.rst

File metadata and controls

86 lines (50 loc) · 4.06 KB

RegExMatch

Inherits: :ref:`Reference<class_reference>` < :ref:`Object<class_object>`

Category: Core

Brief Description

Contains the results of a regex search.

Member Functions

:ref:`int<class_int>` :ref:`get_end<class_RegExMatch_get_end>` ( :ref:`Variant<class_variant>` name=0 ) const
:ref:`int<class_int>` :ref:`get_group_count<class_RegExMatch_get_group_count>` ( ) const
:ref:`int<class_int>` :ref:`get_start<class_RegExMatch_get_start>` ( :ref:`Variant<class_variant>` name=0 ) const
:ref:`String<class_string>` :ref:`get_string<class_RegExMatch_get_string>` ( :ref:`Variant<class_variant>` name=0 ) const

Member Variables

Description

Contains the results of a single regex match returned by :ref:`RegEx.search<class_RegEx_search>` and :ref:`RegEx.search_all<class_RegEx_search_all>`. It can be used to find the position and range of the match and its capturing groups, and it can extract its sub-string for you.

Member Function Description

Returns the end position of the match within the source string. The end position of capturing groups can be retrieved by providing its group number as an integer or its string name (if it's a named group). The default value of 0 refers to the whole pattern.

Returns -1 if the group did not match or doesn't exist.

Returns the number of capturing groups.

Returns the starting position of the match within the source string. The starting position of capturing groups can be retrieved by providing its group number as an integer or its string name (if it's a named group). The default value of 0 refers to the whole pattern.

Returns -1 if the group did not match or doesn't exist.

Returns the substring of the match from the source string. Capturing groups can be retrieved by providing its group number as an integer or its string name (if it's a named group). The default value of 0 refers to the whole pattern.

Returns an empty string if the group did not match or doesn't exist.