Re: Python regex

Page principale

Répondre à ce message
Auteur: Edgar Bonet
Date:  
À: guilde
Sujet: Re: Python regex
Bonsoir !

Patrice Karatchentzeff a écrit :
> Je ne comprends pas pourquoi il ne comprend pas :
>
>     textframe = re.match(r'Text\d+', obj)


Je ne suis pas pythoneux, mais je viens de faire ce petit test :

    $ python3
    Python 3.10.6 (main, Nov 14 2022, 16:10:14) [GCC 11.3.0] on linux
    Type "help", "copyright", "credits" or "license" for more information.
    >>> import re
    >>> obj = 'Text51'
    >>> textframe = re.match(r'Text\d+', obj)
    >>> print(textframe)
    <re.Match object; span=(0, 6), match='Text51'>


Donc Python 3.10.6 semble comprendre très bien.

À+,

Edgar.