regex - CSS animation speed regular expressions (PHP) -
i need regular expressions extract time elements css:
e.g. 4000ms or 4s
all i've got this: preg_match_all('/([0-9]{1-10}(ms|s)/i', $css, $timevalues);
thanks in advance.
you're incorrectly using range quantifier {min, max}
, , missing closing parenthesis.
you can modify regular expression follows:
preg_match_all('/([0-9]{1,10})m?s/i', $css, $timevalues); print_r($timevalues[1]);
Comments
Post a Comment