“______________ will start working on your order soon.͏”
where the _____________ contains a vendor name such as “Acme Trading” or something like that.
I just want that vendor name. I cannot figure out how to parse that out of the example sentence.
So from “Acme Trading will start working on your order soon.͏” I just want “Acme Trading”
The subject line always follows this format:
“Your order has been received (#J746UAZTBG)”
I just want to parse out the order number between the # and the ).
the body of the email also contains an estimated ship date in the following format:
“Est. Jul 31”
I’d like that to become the due date for the Basecamp card, but have no idea how to parse that into a usable date format!
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.
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.
According to the Tokens you can use to parse a date variable, you can use MMM D.
e.g.: {{parseDate(date; "MMM D")}}
(date variable is from previous text parser module)
For more information, see
Links
Here are some useful links and guides you can use to learn more on how to use the Make platform, apps, and app modules. I found these useful when I was learning Make, and hope they might benefit you too —