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

I need a regex to match line begining with a specific WORD, followed by zero or more digits. So far I've tryied this:

^WORD\d{0,}

and this

^WORD[0-9]*

But it doesn't work as expected.

Edit: My bad, I've forgotten end of line character. Thanks for the answers.

share|improve this question
4  
Define "doesn't work as expected". What matches that shouldn't? What doesn't match that should? – Karl Knechtel Dec 4 '10 at 11:35
1  
It seems correct, given the information you have provided. Describe how it fails. – Jim Brissom Dec 4 '10 at 11:35

2 Answers

My bad, I;ve forgotten the $ end of line character, so it matched:

WORD1
WORD11
WORD11a

this works, just fine:

^WORD\\d*$
share|improve this answer
Depends on how you use it I suppose. It doesn't seem to work in this case. – aioobe Dec 4 '10 at 11:45

The problem is probably that ^ matches the beginning of the input (I suspect you only find a match if the first line matches), and not the beginning of a line.

You could try using a positive lookbehind saying that the match should be preceded by either start of input (^) or a new line (\n):

String input = "hello156\n"+
               "world\n" +
               "hello\n" +
               "hell55\n";

Pattern p = Pattern.compile("(?<=^|\n)hello\\d*");
Matcher m = p.matcher(input);
while (m.find())
    System.out.println("\"" + m.group() + "\"");

Prints:

"hello156"
"hello"
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.