Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a regex in Java:

 Pattern pattern = Pattern.compile(<string>text</string><string>.+</string>);
        Matcher matcher = pattern.matcher(ganzeDatei);
        while (matcher.find()) {
            String string = matcher.group();
            ...

This works fine, but the output is sth. like

<string>text</string><string>Name</string>

But I just want this: Name

How can I do this?

share|improve this question

3 Answers

up vote 9 down vote accepted

Capture the text you want to return by wrapping it in parenthesis, so in this example your regex should become

<string>text</string><string>(.+)</string>

Then you can access the text that matched between the parenthesis with

matcher.group(1)

The no-arg group method you are calling, returns the entire portion of the input text that matches your pattern, whereas you want just a subsequence of that, which matches a capturing group (the parenthesis).

share|improve this answer
damn, you were faster (+1) – Sean Patrick Floyd Nov 10 '10 at 9:22
thank you a lot :) – Tobiask Nov 10 '10 at 9:33

Then do this:

Pattern pattern = Pattern.compile(<string>text</string><string>(.+)</string>);
        Matcher matcher = pattern.matcher(ganzeDatei);
        while (matcher.find()) {
            String string = matcher.group(1);
            ...

Reference:

share|improve this answer

You must put text you want to obtain by group() into brackets. So use:

<string>(.+)</string>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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