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.