Hi,
A quick question - i have a string containing text like this:
\\u003cspan class=\\\"someClass\\\">Some text\\u003c\\\/span>
How do i get that "Some text" value into an array? I tried
preg_match_all("/\\\\u003cspan class=\\\\\\\"someClass\\\\\\\">(.*?)\\\\u003c\\\\\\/span>/",$str,$res);
Returns nothing. I think there's something wrong with the regex pattern. Maybe anyone can correct me?
Thanks