I'm loading a php page inside an Android WebView (is a third part page, so i can't modify it), and the result is something like:
<html>
<head>
//something in head
</head>
<body>
<script>
// a script for load content
</script>
// other stuffs
<script> var varToRead=100;</script>
</body>
</html>
And i need to read value of varToRead for doing some stuff inside my app. How can i access it?