I got following String:
ElFTkSuQmCC" alt="" width="auto" height="auto" /></td>
<td style="padding: 10px;">XX,X%</t
And want to have the "XX,X", so i build following regular expression:
/QmCC" alt="" width="auto" height="auto" \/><\/td>\n<td style="padding: 10px;">(.*?)%/
I tested it online and got a match for the XX,X but when i try to execute it in php with following code
preg_match_all('/REGEX/',$string,$match);
It didn't match. Do you have any suggestions? The String is definitely in there. var_dump($match)
gives me an empty array.
Thank you!