I want to retrieve a strings from a global string via Matcher & Pattern using REGEX.
String str = \"ABC123DEF<
I recommend to use JSOUP to parse your HTML code instead of regex as
Document doc = Jsoup.parse("ABC123DEF");
// select your tag
Elements elements = doc.select("strong");
// get the iterator to traverse all elements
Iterator it = elements.iterator();
// loop through all elements and fetch their text
while (it.hasNext()) {
System.out.println(it.next().text());
}
Output :
ABC
DEF
or get Output as single string
Document doc = Jsoup.parse("ABC123DEF");
Elements elements = doc.select("strong");
System.out.println(elements.text());
Output:
ABC DEF
Download Jsoup and add it as a dependency