Java regex to extract text between tags

JavaRegex

Java Problem Overview


I have a file with some custom tags and I'd like to write a regular expression to extract the string between the tags. For example if my tag is:

[customtag]String I want to extract[/customtag]

How would I write a regular expression to extract only the string between the tags. This code seems like a step in the right direction:

Pattern p = Pattern.compile("[customtag](.+?)[/customtag]");
Matcher m = p.matcher("[customtag]String I want to extract[/customtag]");

Not sure what to do next. Any ideas? Thanks.

Java Solutions


Solution 1 - Java

You're on the right track. Now you just need to extract the desired group, as follows:

final Pattern pattern = Pattern.compile("<tag>(.+?)</tag>", Pattern.DOTALL);
final Matcher matcher = pattern.matcher("<tag>String I want to extract</tag>");
matcher.find();
System.out.println(matcher.group(1)); // Prints String I want to extract

If you want to extract multiple hits, try this:

public static void main(String[] args) {
	final String str = "<tag>apple</tag><b>hello</b><tag>orange</tag><tag>pear</tag>";
	System.out.println(Arrays.toString(getTagValues(str).toArray())); // Prints [apple, orange, pear]
}

private static final Pattern TAG_REGEX = Pattern.compile("<tag>(.+?)</tag>", Pattern.DOTALL);

private static List<String> getTagValues(final String str) {
	final List<String> tagValues = new ArrayList<String>();
	final Matcher matcher = TAG_REGEX.matcher(str);
	while (matcher.find()) {
		tagValues.add(matcher.group(1));
	}
	return tagValues;
}

However, I agree that regular expressions are not the best answer here. I'd use XPath to find elements I'm interested in. See The Java XPath API for more info.

Solution 2 - Java

To be quite honest, regular expressions are not the best idea for this type of parsing. The regular expression you posted will probably work great for simple cases, but if things get more complex you are going to have huge problems (same reason why you cant reliably parse HTML with regular expressions). I know you probably don't want to hear this, I know I didn't when I asked the same type of questions, but string parsing became WAY more reliable for me after I stopped trying to use regular expressions for everything.

jTopas is an AWESOME tokenizer that makes it quite easy to write parsers by hand (I STRONGLY suggest jtopas over the standard java scanner/etc.. libraries). If you want to see jtopas in action, here are some parsers I wrote using jTopas to parse this type of file

If you are parsing XML files, you should be using an xml parser library. Dont do it youself unless you are just doing it for fun, there are plently of proven options out there

Solution 3 - Java

A generic,simpler and a bit primitive approach to find tag, attribute and value

    Pattern pattern = Pattern.compile("<(\\w+)( +.+)*>((.*))</\\1>");
    System.out.println(pattern.matcher("<asd> TEST</asd>").find());
    System.out.println(pattern.matcher("<asd TEST</asd>").find());
    System.out.println(pattern.matcher("<asd attr='3'> TEST</asd>").find());
    System.out.println(pattern.matcher("<asd> <x>TEST<x>asd>").find());
    System.out.println("-------");
    Matcher matcher = pattern.matcher("<as x> TEST</as>");
    if (matcher.find()) {
        for (int i = 0; i <= matcher.groupCount(); i++) {
            System.out.println(i + ":" + matcher.group(i));
        }
    }

Solution 4 - Java

Try this:

Pattern p = Pattern.compile(?<=\\<(any_tag)\\>)(\\s*.*\\s*)(?=\\<\\/(any_tag)\\>);
Matcher m = p.matcher(anyString);

For example:

String str = "<TR> <TD>1Q Ene</TD> <TD>3.08%</TD> </TR>";
Pattern p = Pattern.compile("(?<=\\<TD\\>)(\\s*.*\\s*)(?=\\<\\/TD\\>)");
Matcher m = p.matcher(str);
while(m.find()){
   Log.e("Regex"," Regex result: " + m.group())       
}

Output:

10 Ene

3.08%

Solution 5 - Java

	String s = "<B><G>Test</G></B><C>Test1</C>";
	
	String pattern ="\\<(.+)\\>([^\\<\\>]+)\\<\\/\\1\\>";

	   int count = 0;

	    Pattern p = Pattern.compile(pattern);
	    Matcher m =  p.matcher(s);
	    while(m.find())
	    {
	        System.out.println(m.group(2));
	        count++;
	    }

Solution 6 - Java

	final Pattern pattern = Pattern.compile("tag\\](.+?)\\[/tag");
	final Matcher matcher = pattern.matcher("[tag]String I want to extract[/tag]");
	matcher.find();
	System.out.println(matcher.group(1));

Solution 7 - Java

I prefix this reply with "you shouldn't use a regular expression to parse XML -- it's only going to result in edge cases that don't work right, and a forever-increasing-in-complexity regex while you try to fix it."

That being said, you need to proceed by matching the string and grabbing the group you want:

if (m.matches())
{
   String result = m.group(1);
   // do something with result
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questionb10hazardView Question on Stackoverflow
Solution 1 - JavahoipolloiView Answer on Stackoverflow
Solution 2 - Javajdc0589View Answer on Stackoverflow
Solution 3 - JavaGorkyView Answer on Stackoverflow
Solution 4 - JavaHeriberto RiveraView Answer on Stackoverflow
Solution 5 - JavaShubham KhuranaView Answer on Stackoverflow
Solution 6 - JavaBibhuti AgarwalView Answer on Stackoverflow
Solution 7 - JavaShirikView Answer on Stackoverflow