Extract information from text

Hello everyone,

I have a text with the following format i got from my Google Calendar. In this text, I’m trying to extract two pieces of information:

  • The first name of the person I’m meeting (here: “Paul”)
  • Its phone number (here: “+33606060606”)

I haven’t been able to find a working solution. Could you help me out?

Thanks in advance!

Bonjour Paul Dupont,

Votre événement: Appel de Consulting (Offert) avec Killian à 11:30 (Europe/Paris) le 24 juin 2025 est prévu.

Adresse e-mail: mail@hotmail.fr
Numéro de téléphone: +33606060606

Prénom: Paul
Nom de famille: Dupont
Est-ce que tu investis seul ou avec ton/ta partenaire ?: J’investis seul(e).
Combien de revenus déclares-tu aux impôts chaque année ?: Entre 0€ et 20.000€
Aujourd’hui, placer ton argent est-il une priorité pour toi ?: Oui.
Si une solution existait pour t’accompagner et te simplifier l’investissement, serais-tu prêt à investir en toi-même ?: Oui.

You can use regex or text parsers to extract the information. You can provide chatgpt with the data and tell it what you want to extract from it.

Tell it to give you a regular expression that you can use to extract whatever it is you wanna extract

Hi @Killian,

You can extract the required information using the Text Parser module in Make.com. Simply create two separate parsers: one for the first name and one for the phone number. Use the following regular expressions:

Phone:

Numéro de téléphone:\s*(+\d+)

First Name:

Prénom:\s*(.+)

Map your full Google Calendar text into the Text Parser, apply these patterns, and it will automatically extract the desired values.

:paperclip: Attached is a screenshot for reference:

1 Like

Thank you so much it works !

Have a nice day

2 Likes