Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Pattern pattern = Pattern.compile("<\\s*([^>\\s]+)[^>]*>");
- Matcher matcher = pattern.matcher("Ez egy < i spock=\"vulcan\" >html <b>teszt</b>része</i>");
- while( matcher.find() ){
- System.err.println("<"+matcher.group(1)+">");
- }
Advertisement
Add Comment
Please, Sign In to add comment