Hi there.
I need a regex that matches the following (the brackets indicate I want to match this section, they are not there in the actual string to be matched!):
More Words:
6818 [some words] 641 [even more words]
I tried it with following:
(?<=[0-9]+\s)[a-z\s]+(?!\s{2,})
To say it in literals; "Match all words including the whitespace between them that come one space after 1 or more digits and before 2 or more whitespaces" but it selects all whitespaces as well as it sometimes strips out the last letter of a word (wtf?)