I'm trying to apply regex in my android code to get a specific value from a HTML page. The HTML code is :
<html>
<head>
<title>Sometitle</title>
<body>
<span class="shout">VAL 32354</span>
</body>
</html>
my aim is to extract this text "VAL 32354" from the above mentioned HTML code ? I've searched long for regex with android and I found rare number of tutorials which were are all complicated for a beginner programmer like me . Any thoughts how to do that ? and thanks in advance
Note : if regex doesn't work in this case , what are the alternatives ?