vote up 1 vote down star
1

I have a string with markup in it which I need to find using Java.

eg.

string = abc<B>def</B>ghi<B>j</B>kl

desired output..

segment [n] = start, end

segment [1] = 4, 6
segment [2] = 10, 10
flag

looks like a regex from the java.util.regex package plus some simple maths is the way to go on this – Peter Rounce Jan 6 '09 at 10:30
or better, a regex like <b>[^<]+</b> to match each segment – Peter Rounce Jan 6 '09 at 12:11

6 Answers

vote up 8 vote down check

Regular expressions should work wonderfully for this.

Refer to your JavaDoc for

  • java.langString.split()
  • java.util.regex package
  • java.util.Scanner

Note: StringTokenizer is not what you want since it splits around characters, not strings - the string delim is a list of characters, any one of which will split. It's good for the very simple cases like an unambiguous comma separated list.

link|flag
vote up 2 vote down

The StringTokenizer will give you separate tokens when you want to separate the string by a specific string. Or you can use the split() method in String to get the separate Strings. To get the different arrays you have to put a regular expression into.

link|flag
1  
thanks Markus.. for reference I found this.. StringTokenizer is a legacy class that is retained for compatibility reasons although its use is discouraged in new code. It is recommended that anyone seeking this functionality use the split method of String or the java.util.regex package instead. – Peter Rounce Jan 6 '09 at 10:28
StringTokenizer splits around characters, not strings - the string delim is a list of characters, any one of which will split. It's good for the very simple cases like an unambiguous comma separated list. – Software Monkey Jan 6 '09 at 10:43
vote up 1 vote down

StringTokenizer takes the whole String as an argument, and is not really a good idea for big strings. You can also use StreamTokenizer

You also need to look at Scanner.

link|flag
vote up 1 vote down

Given your example I think I'd use regex and particularly I'd look at the grouping functionality offered by Matcher.

Tom

String inputString = "abc<B>def</B>ghi<B>j</B>kl";

String stringPattern = "(<B>)([a-zA-Z]+)(<\\/B>)";

Pattern pattern = Pattern.compile(stringPattern);
Matcher matcher = pattern.matcher(inputString);

if (matcher.matches()) {

    String firstGroup  = matcher.group(1);
    String secondGroup = matcher.group(2); 
    String thirdGroup  = matcher.group(3);
}
link|flag
this is great - matching the whole segment rather than just the start/end tags individually – Peter Rounce Jan 6 '09 at 11:26
when I tried your regex in gskinner.com/RegExr it did not seem to match the segments something simple like <B>.+</B> matches around the first <B> and last </B> so that's not the way – Peter Rounce Jan 6 '09 at 11:36
You're . will match anything so it need to be more restrictive. Hence my use of [a-zA-Z]. I'm sure with a little tweaking and some understanding of what you can expect in between the <B> and </B> you should be able to nail it. – Tom Duckering Jan 6 '09 at 11:43
ah - replace [a-zA-Z] with [a-zA-Z]+ – Tom Duckering Jan 6 '09 at 11:44
or.. <b>[^<]+</b> .. thanks Tom – Peter Rounce Jan 6 '09 at 12:10
show 2 more comments
vote up 1 vote down

It is a bit 'Brute Force' and makes some assumptions but this works.

public class SegmentFinder
{

    public static void main(String[] args)
    {
        String string = "abc<B>def</B>ghi<B>j</B>kl";
        String startRegExp = "<B>";
        String endRegExp = "</B>";
        int segmentCounter = 0;
        int currentPos = 0;
        String[] array = string.split(startRegExp);
        for (int i = 0; i < array.length; i++)
        {           
            if (i > 0) // Ignore the first one
            {
                segmentCounter++;
                //this assumes that every start will have exactly one end
                String[] array2 = array[i].split(endRegExp);
                int elementLenght = array2[0].length();
                System.out.println("segment["+segmentCounter +"] = "+ (currentPos+1) +","+ (currentPos+elementLenght) );
                for(String s : array2)
                {
                    currentPos += s.length();  
                }
            }
            else
            {
                currentPos += array[i].length();                
            }
        }
    }
}
link|flag
vote up 0 vote down

Does your input look like your example, and you need to get the text between specific tags? Then a simple StringUtils.substringsBetween(yourString, "<B>", "</B>") using the apache commons lang package (http://commons.apache.org/lang/) should do the job.

If you're up for a more general solution, for different and possibly nested tags, you might want to look at a parser that takes html input and creates an xml document out of it, such as NekoHTML, TagSoup, jTidy. You can then use XPath on the xml document to access the contents.

link|flag
I need to get the positions of the "<B>" and "</B>" in number of characters not including those tags. - see the example in the question – Peter Rounce Jan 12 at 16:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.