Launching a SaaS?·Collect waitlist signups before you build — before.run
SandboxPatternsDetectDocsChangelog
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
/
/
Risk
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

Usage & Integration

Validate Markdown Table Row natively in your backend or frontend without copying regex strings.

Node / Edge

import { validate } from '@regexto/validators';

validate('markdown-table-row', '...');

Python

from regexto_validators import validate

validate("markdown-table-row", "...")

Go

import "github.com/regex-to/validators-go"

valid, err := validators.Validate("markdown-table-row", "...")

PHP

use RegexTo\Validators\Validator;

Validator::validate('markdown-table-row', '...');

Rust

use regexto_validators::validate;

let is_valid = validate("markdown-table-row", "...").unwrap();