Launching a SaaS?·Collect waitlist signups before you build — before.run
SandboxPatternsDetectDocs
Markdown
#markdown
#table
#gfm
#pipe

Markdown Table Row

Matches a Markdown GFM table row — cells separated by pipe | characters.

GFM table parsersTable data extractionDocumentation tools
/
/
Test String
3 matches
^^^ — start of string (or line in multiline mode)
\|\|\| — escaped character '|'
(…)+Group #1Capturing group — captures matched text for reuse or extraction — repeated one or more times (greedy) · + — one or more times (greedy)
.+.. — matches any character except newline (unless 's' flag is set) — repeated one or more times (greedy) · + — one or more times (greedy)
\|\|\| — escaped character '|'
$$$ — end of string (or line in multiline mode)
Pattern: 11 charsInput: 65 chars
100% client-side · private

Valid Examples

  • | Name | Age | City |
  • | --- | --- | --- |
  • | Alice | 30 | London |

Invalid Examples

  • Not a table
  • | single cell
  • no pipes here