Test .NET Regular Expressions.
A client-side Regex tester using the .NET regex engine via WebAssembly.
➕ Add to DashboardRegular expressions were invented by mathematician Stephen Cole Kleene in the 1950s as part of formal language theory. Ken Thompson brought them to computing in 1968 when he implemented them in the QED text editor. The famous quote? "Some people, when confronted with a problem, think 'I know, I'll use regular expressions.' Now they have two problems."
.* pattern is called "greedy" because it matches as much as possible? after quantifiers (.*?) to match minimally
(?<name>pattern) makes captures readable(?x) flag allows whitespace and comments in your regex^ and $ to match whole strings