Text Parser Module Suddenly Stopped Working - No Longer Matching Patterns

Welcome to the Make community!

You can use a Text Parser “Match Pattern” module with this Pattern (regular expression):

(?<heading_num>#+) (?<title>[^:]+):\s+(?<text>[^#]*?)\s*(?=#|$)

Proof https://regex101.com/r/WJaMOm/2

Important Info

  • :warning: Global match must be set to YES!

Example

Output


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.

Hope this helps! Let me know if there are any further questions or issues.

@samliew


P.S.: Did you know, the concepts of about 70% of questions asked on this forum are already covered in the Make Academy. Investing some effort into it will save you lots of time and frustration using Make later!

3 Likes