I have a problem with my regular expression:
String regex = "(?<=[\\s])#\\w+\\s";
I want a regex that formats a string like this:
"This is a Text #tag1 #tag2 #tag3"
With the regular expression, I get the last two values as result but not tag1 - because there is more than one whitespace. But i want all 3 of them!
I tried some variations, but nothing worked.
#tag or not? – ohaal Feb 26 '12 at 15:46#tag1for it to be a valid match? – ohaal Feb 27 '12 at 11:20