Collection d'exemples d'expressions régulières (Regex)

Ines Beyer
Ines Beyer

Créé: 15.09.2019 6:05 - Mis à jour: 02.03.2021 11:27

Date (DD MM YYYY)

Find date (DD MM YYYY). Possible separators: ". / -"

Example text: Received on 22.01.2020

REGEX:

Result: 22.01.2020

Find day in (DD MM YYYY). Possible separators: ". / -"

Example text: Received on 22.01.2020

REGEX:

Result: 22

Find month in (DD MM YYYY). Possible separators: ". / -"

Example text: Received on 22.01.2020

REGEX:

Result: 01

Find year in (DD MM YYYY). Possible separators: ". / -"

Example text: Received on 22.01.2020

REGEX:

Result: 2020

Date (MM DD YYYY)

Find date (MM DD YYYY). Possible separators: ". / -"

Example text: Received on 01/22/2020

REGEX:

Result: 01/22/2020

Find month in (MM DD YYYY). Possible separators: ". / -"

Example text: Received on 01/22/2020

REGEX:

Result: 01

Find day (MM DD YYYY). Possible separators: ". / -"

Example text: Received on 01/22/2020

REGEX:

Result: 22

Find year in (MM DD YYYY). Possible separators: ". / -"

Example text: Received on 01/22/2020

REGEX:

Result: 2020

Date (YYYY MM DD)

Find date (YYYY MM DD). Possible separators: ". / -"

Example text: Received on 2020-01-22

REGEX:

Cet article vous a-t-il été utile?