Is there a regular expressions standard?
April 21, 2004 5:09 PM
Subscribe
Regular Expressions: Is there a standard? [more]
Many programming languages and technologies support pattern matching in text using regular expressions. Is there a published industry standard somewhere for their syntax and implementation?
posted by normy to computers & internet (7 comments total)
The two most common are PCRE (Perl Compatible Regular Expressions, apart from perl5 there's also a C library that handles these) and POSIX regcomp/regexec regular expressions.
posted by fvw at 5:25 PM on April 21, 2004