Browser-only utility

Regex Tester, private by default

Write a pattern, choose flags, paste test text, and inspect matches without uploading sample data to tempboxs.

Test a regular expression locally

Check a JavaScript regex pattern, flags, matches, indexes, and capture groups without uploading your sample text to tempboxs.

Match results
Waiting

Enter a regular expression pattern to test it against sample text.

Matches

0

Flags

gi

Pattern chars

0

Regex testing runs locally in your browser. Patterns and sample text are not uploaded to tempboxs.

How to use regex tester safely

What regular expressions are good for

A regular expression describes a text pattern. Developers use regex for validation, extraction, cleanup, search, routing rules, log parsing, and quick checks inside editors or scripts.

Regex is powerful for compact pattern matching, but it can become hard to read when it tries to parse a full language or document format. Use it for focused text patterns rather than every kind of parsing problem.

What this tester shows

The tester runs JavaScript RegExp in your browser. It reports whether the pattern is valid, which flags are active, how many matches were found, the index of each match, and any capture groups.

It adds the global flag during testing so multiple matches can be listed. If a pattern is invalid, the tool shows the browser's error message rather than sending the pattern to a server.

  • Pattern validity and JavaScript regex errors
  • Match count and starting indexes
  • Captured groups for each match
  • Flags such as g, i, m, s, u, v, y, and d when supported
  • Up to the first 100 matches for readable output

Safe regex habits

Avoid testing private production data when a small redacted sample will prove the pattern. Browser-only testing keeps text local, but it does not decide whether the sample is appropriate to share.

For application code, watch out for overly broad validation, patterns that miss unicode or locale cases, and expressions that can become slow on crafted input. Test with realistic examples and failure cases before relying on a regex in production.

Why people use this tool

Regex patterns and sample text are tested locally in your browser. tempboxs does not receive pasted text or matches.

Test JavaScript regex

Use the browser's regular expression engine to check patterns, flags, matches, and capture groups.

Review match positions

See each match, its index, and any captured groups so parsing logic is easier to debug.

Keep samples local

Test log lines, snippets, validation patterns, and support examples without server uploads.

Guides from the blog

Learn more about privacy, tracking, passwords, and safer signups.

AdSense Checklist

Review content quality, policy pages, ad placement, crawlability, and technical files before AdSense checks.

ads.txt Checker

Generate a Google AdSense ads.txt line and check pasted authorized-seller records locally before publishing.

UUID Generator

Generate random UUID v4 identifiers in your browser, copy one value, or create a small batch for testing.

Timestamp Converter

Convert Unix timestamps, milliseconds, ISO dates, and local-readable times locally in your browser.

Meta Analyzer

Paste page HTML to inspect title tags, meta descriptions, canonical URLs, robots directives, Open Graph tags, and JSON-LD locally in your browser.

Schema Generator

Generate JSON-LD schema markup for articles, FAQ pages, web pages, and browser tools locally before publishing.

OG Preview

Draft Open Graph and Twitter card preview tags locally for articles, tools, landing pages, and social shares.

llms.txt Generator

Generate an llms.txt draft for AI discovery with public pages, useful tools, safety notes, and crawling guidance.

Sitemap Generator

Generate sitemap XML from public URLs and check duplicate or invalid entries locally before publishing.

Robots Tester

Paste robots.txt rules to test whether a URL path appears allowed or blocked for Googlebot, Bingbot, or another crawler locally in your browser.

JWT Decoder

Decode JWT headers and payloads locally in your browser, inspect claims, and learn what still needs verification.

Strength Checker

Check password length, character variety, common patterns, and estimated guess resistance locally in your browser.

Pixel Checker

Paste email HTML to find likely tracking pixels, remote images, and marketing links locally in your browser.

YAML to JSON

Convert common YAML snippets into formatted JSON locally in your browser for configs, docs, and API examples.

User Agent Parser

Parse browser, operating system, device, engine, and bot hints from user agent strings locally in your browser.

Header Analyzer

Paste raw email headers to inspect sender fields, authentication results, and delivery hops locally in your browser.

URL Parser

Parse a URL into protocol, origin, hostname, port, path, query parameters, hash, and decoded components locally in your browser.

URL Encoder

Encode URL text into percent-escaped values or decode encoded URLs locally in your browser.

URL Cleaner

Clean tracking parameters from links, decode common redirect URLs, and inspect domains locally in your browser.

DNS Records

Look up common DNS record types, purposes, examples, and setup notes locally in your browser.

UTM Builder

Build campaign URLs with UTM source, medium, campaign, term, and content parameters locally in your browser.

JSON Formatter

Format, minify, and validate JSON locally in your browser with clear error feedback.

HTML Entities

Encode HTML-sensitive characters or decode named and numeric entities locally in your browser for docs, blog posts, comments, and support replies.

MIME Types

Look up common file extensions, MIME types, categories, and delivery notes locally in your browser.

Markdown Previewer

Preview Markdown headings, lists, links, inline styles, and code blocks locally in your browser before publishing docs or guides.

Privacy Checklist

Generate a browser-only privacy checklist for signups, support tickets, link sharing, and publishing workflows.

Word Counter

Count words, characters, sentences, paragraphs, reading time, speaking time, and repeated terms locally in your browser.

Contrast Checker

Check foreground and background hex colors against common WCAG contrast thresholds locally in your browser.

Cron Explainer

Explain five-field cron expressions locally in your browser with readable field meanings and schedule warnings.

CSS Units

Convert CSS px, rem, em, and percent values locally in your browser with adjustable root and parent font sizes.

CSV to JSON

Convert CSV or tabular spreadsheet exports into formatted JSON locally in your browser with header and delimiter controls.

Case Converter

Convert text into lowercase, uppercase, title case, sentence case, slug, snake_case, kebab-case, camelCase, and PascalCase locally in your browser.

HTTP Status Codes

Look up common HTTP status codes, meanings, categories, and troubleshooting notes locally in your browser.

Base64 Converter

Encode plain text to Base64 or decode Base64 back to UTF-8 text locally in your browser.

Hash Generator

Generate SHA-256, SHA-384, and SHA-512 hashes for text or local files without uploading them.

FAQ

No. Regex testing runs locally in your browser and does not send patterns, sample text, or matches to tempboxs.

It uses JavaScript RegExp in the browser, so behavior follows the JavaScript regular expression engine available in your current browser.

The tester adds global matching so it can list multiple matches instead of stopping after the first result.

No. Regex can catch practical patterns, but full email or URL validation often needs parsing rules, normalization, DNS or application checks, and business-specific decisions.