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

Popular posts from this blog

android - org.xmlpull.v1.XmlPullParserException: expected: START_TAG {http://schemas.xmlsoap.org/soap/envelope/}Envelope -

c# - Specify IP End Point in FiddlerCore -

java - Solr query version issue: Invalid version or the data in not in 'javabin' format -