I have a string that look like this
BLA BLA BLA "url_encoded_fmt_stream_map": "ABCDEFGHIJKLMN" BLA BLA BLA BLA
And i want to get the string ABCDEFGHIJKLMN,i tried to do it with REGX:
html = html.match("\"url_encoded_fmt_stream_map\": \"(.*)\"");
But it always give me an empty string.Any idea what is the problem with this method?