Ad Placeholder โ€“ Top (Responsive Leaderboard)

๐Ÿงช Regex Tester & Visualizer

Engine:

Live matching, groups, replace preview, and split. Save your test cases locally.

Flags

Quick Regex Cheat Sheet

  • \d digit, \w word, \s whitespace
  • . any char (add s for dotall)
  • [abc] set; [^abc] negated set
  • (a|b) alternation
  • ^ start, $ end (add m for multiline)
  • a? 0โ€“1; a* 0+; a+ 1+
  • Captures: ( ), non-capture: (?: )
  • Named: (?<name>...) (PHP/PCRE), (?<name>...) (JS)
  • Lookahead: (?=...), negative: (?!...)
  • Lookbehind (supported in modern JS/PCRE): (?<=...) / (?<!...)
  • Unicode property: \p{L} (add u)

Highlights


Matches & Groups

No matches yet.
#StartEndMatchGroups

Replace Preview

โ€”
Ad Placeholder โ€“ In-Content (Rectangle)

Split Result

    Ad Placeholder โ€“ Bottom (Responsive)

    Saved Tests (Local)

    No saved tests yet.