Participer au site avec un Tip
Rechercher
 

Améliorations / Corrections

Vous avez des améliorations (ou des corrections) à proposer pour ce document : je vous remerçie par avance de m'en faire part, cela m'aide à améliorer le site.

Emplacement :

Description des améliorations :

Module « re » Python 3.11.3

Classe « Match »

Informations générales

Héritage

builtins.object
    Match

Définition

class Match(builtins.object):

help(Match)

The result of re.match() and re.search().
Match objects always have a boolean value of True.

Constructeur(s)

Signature du constructeur Description
__init__(self, /, *args, **kwargs) Initialize self. See help(type(self)) for accurate signature. [extrait de __init__.__doc__]

Liste des attributs statiques

Nom de l'attribut Valeur
endpos<member 'endpos' of 're.Match' objects>
lastgroup<attribute 'lastgroup' of 're.Match' objects>
lastindex<attribute 'lastindex' of 're.Match' objects>
pos<member 'pos' of 're.Match' objects>
re<member 're' of 're.Match' objects>
regs<attribute 'regs' of 're.Match' objects>
string<member 'string' of 're.Match' objects>

Liste des opérateurs

Signature de l'opérateur Description
__getitem__(self, key) Return self[key]. [extrait de __getitem__.__doc__]

Opérateurs hérités de la classe object

__eq__, __ge__, __gt__, __le__, __lt__, __ne__

Liste des méthodes

Toutes les méthodes Méthodes d'instance Méthodes statiques Méthodes dépréciées
Signature de la méthodeDescription
__class_getitem__ See PEP 585 [extrait de __class_getitem__.__doc__]
__copy__(self)
__deepcopy__(self, memo)
__repr__(self) Return repr(self). [extrait de __repr__.__doc__]
end(self, group=0) Return index of the end of the substring matched by group. [extrait de end.__doc__]
expand(self, /, template) Return the string obtained by doing backslash substitution on the string template, as done by the sub() method. [extrait de expand.__doc__]
group group([group1, ...]) -> str or tuple. [extrait de group.__doc__]
groupdict(self, /, default=None) Return a dictionary containing all the named subgroups of the match, keyed by the subgroup name. [extrait de groupdict.__doc__]
groups(self, /, default=None) Return a tuple containing all the subgroups of the match, from 1. [extrait de groups.__doc__]
span(self, group=0) For match object m, return the 2-tuple (m.start(group), m.end(group)). [extrait de span.__doc__]
start(self, group=0) Return index of the start of the substring matched by group. [extrait de start.__doc__]

Méthodes héritées de la classe object

__delattr__, __dir__, __format__, __getattribute__, __getstate__, __hash__, __init_subclass__, __reduce__, __reduce_ex__, __setattr__, __sizeof__, __str__, __subclasshook__