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

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

Hard vs. Soft Water: What's The Difference?

The Ten Most Livable Cities In The World