I need to extract some information from a string.
This is the string that I receive (JAVA) :
45056 <LIGNE> 164 336 143 191 </LIGNE>
This is the Regex I use:
Pattern p = Pattern.compile("<(.*)>(.*)</\\1>");
The output : LIGNE 164 336 143 191
I want to have the 5 digits numbers too, i can't figure out how to extract it. I tried with
(\\d+)<(.*)>(.*)</\\1>
but, it didn't work.