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

OpenCV OpenCL: Convert Mat to Bitmap in JNI Layer for Android -

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

python - How to remove the Xframe Options header in django? -