Am trying to read strings from a html page to get settings the following javascript strings i like to be able to read.
<script type="text/javascript">
PP['channel'] = "testchannel";
PP['channel_id'] = 39388311;
PP['channel_category'] = "gaming";
PP['channel_meta_game'] = "wow"
PP['channel_is_featured'] = false;
</script>
would be nice that i can pick the data i wish to read like so
Label1.Captaion := dat[0]; // channel name
Label1.Captaion := dat[1]; // channel id
so on
thanks hope some one can help