Work with text and code more efficiently using these free browser-based tools. Test and debug regular expressions with real-time pattern matching and capture group highlighting, compare two texts side by side with a visual diff checker, write and preview markdown with live HTML output, convert strings between camelCase, snake_case, kebab-case and other naming conventions, translate complex regex patterns into plain English, and escape or unescape strings for JSON, HTML, JavaScript and more — all running entirely client-side with no server calls and no signup required.
9 Code & Text Tools
Code and text tools cover the day-to-day grind: testing a regex you'll never remember, comparing two configs, escaping strings for JSON or HTML, counting tokens before sending a prompt to GPT or Claude. The right choice depends on the format you're wrestling with and whether you need deep analysis (regex explainer) or a quick transform (case converter).
.* grabs everything to the end of line. Use .*? (lazy) or a more specific character class.. matches any character — use \. when you mean a literal period (e.g. matching example\.com)." as \" then re-encoding for HTML produces double-escaped junk. Encode once, in the final destination format.Frequently Asked Questions
Other Categories