<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: hollowsolve</title>
    <description>The latest articles on DEV Community by hollowsolve (@hollowsolve).</description>
    <link>https://dev.to/hollowsolve</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3792607%2F89c8da87-2ab2-4b85-86da-1c468aff53f0.jpg</url>
      <title>DEV Community: hollowsolve</title>
      <link>https://dev.to/hollowsolve</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hollowsolve"/>
    <language>en</language>
    <item>
      <title>Why I replaced regex with plain English</title>
      <dc:creator>hollowsolve</dc:creator>
      <pubDate>Wed, 25 Feb 2026 20:14:22 +0000</pubDate>
      <link>https://dev.to/hollowsolve/why-i-replaced-regex-with-plain-english-2986</link>
      <guid>https://dev.to/hollowsolve/why-i-replaced-regex-with-plain-english-2986</guid>
      <description>&lt;p&gt;All developers know the relief of finally getting that regex to work. Then a few months later, nobody, including you, can read it.&lt;/p&gt;

&lt;p&gt;I got tired of it, so I started working on Match: a pattern matching language where you describe what you're looking for in plain English.&lt;/p&gt;

&lt;p&gt;Designing a language that reads like English seems straightforward, but keeping it organized and consistent was way more work than I anticipated. &lt;/p&gt;

&lt;p&gt;The more walls I encountered, the more opinionated trade-offs had to be made. Should matching be greedy with backtracking, or greedy with commitment? I chose PEG semantics. First match wins, no backtracking. That one decision eliminates an entire class of security vulnerabilities (ReDoS) and makes every grammar predictable.&lt;/p&gt;

&lt;p&gt;Should grammars be self-contained or composable? Both: you can write standalone grammars or import rules from modules with use "validators" (email, url).&lt;/p&gt;

&lt;p&gt;Every choice came down to the same question: what would a developer expect to read six months from now?&lt;/p&gt;

&lt;p&gt;If you're tired of writing regex that looks like a hashed paragraph, Match is free for open-source and education.&lt;/p&gt;

&lt;p&gt;Try it at &lt;a href="https://matchlang.com" rel="noopener noreferrer"&gt;https://matchlang.com&lt;/a&gt;&lt;/p&gt;

</description>
      <category>codequality</category>
      <category>programming</category>
      <category>security</category>
      <category>showdev</category>
    </item>
  </channel>
</rss>
