Hello
I do not succeed to match number from an email.
I put \d{0,2} \d{3},\d{2}
as pattern :
but it doesn’t work.
Thanks for your help.
Hello
I do not succeed to match number from an email.
I put \d{0,2} \d{3},\d{2}
as pattern :
but it doesn’t work.
Thanks for your help.
Welcome to the Make community!
You can use a Text Parser “Match Pattern” module with this Pattern (regular expression):
(\d{0,2} \d{3},\d{2})
Either turn on Global Match (not recommended), OR put brackets around the pattern.
Proof https://regex101.com/r/0uY7zY/1
For more information, see Text Parser in the Make Help Center:
Match Pattern
The Match pattern module enables you to find and extract string elements matching a search pattern from a given text. The search pattern is a regular expression (aka regex or regexp), which is a sequence of characters in which each character is either a metacharacter, having a special meaning, or a regular character that has a literal meaning.
- The complete list of metacharacters can be found on the MDN web docs website.
- For a tutorial on how to create regular expressions, we recommend the RegexOne website.
- For an easy, quick regex generator, try the Regular Expressions generator.
- For experimenting with regular expressions, we recommend the regular expressions 101 website. Just make sure to tick the ECMAScript (JavaScript) FLAVOR in the left panel.
Hope this helps! Let me know if there are any further questions or issues.
— @samliew
P.S.: Investing some effort into the Make Academy will save you lots of time and frustration using Make.
Ok, just brackets and it works. Thanks a lot !
Yes. Brackets are also known as “Capturing Groups”.
Hope this helps! Let me know if there are any further questions or issues.
— @samliew
P.S.: Investing some effort into the Make Academy will save you lots of time and frustration using Make.