I obtain a response by HttpGet. After getEntity().getContent() I get the code of HTML page, and then convert this page to String pageHTML.
I need to use regular expression match the pageHTML and then obtain the result.
I have created the regular expression.
If regular expression just return a value, how to create?
If regular expression just return n values, how to create?
You can use groups to receive multiple values from a regular expression. See this for details.