It seems to be that the HTML5 spec (and therefore ECMA262) allows <input type="text" pattern="[0-9]/[0-9]" /> to match the string '0/0' even though the forward slash is not escaped. Web applications like Drupal would like to provide server-side validation for browsers that don't support HTML5 with something like:
<?php
preg_match('/^(' . $pattern . ')$/', $value);
?>
Unfortunately the string '[0-9]/[0-9]' is not a valid PRCE regex. It appears that most if not all HTML5-capable browser support both pattern="[0-9]/[0-9]" and pattern="[0-9]\/[0-9]" which begs the question - what the hell can we use as a delimiter to run this pattern against Perl-style regex?
We've filed a bug report against the W3C spec but are the browsers wrong here? Does the HTML5 spec need to be clarified? Is there a workaround we can use in PHP?
^and$characters may already break the pattern, no? Consider$pattern = "(^|foo)bar". – drrcknlsn Mar 2 '12 at 2:43