How we can manage regex in Java?
Yes, I did search regex topics, but I think it is strange in Java. What I would like to do is
My team <[email protected]>
with regex, I would like to get string between < > as [email protected]
Pattern p = Pattern.compile("(.+?)\\<.*?\\>?");
The above one didn't work.