I have a string as follow.
#a girlfriend, or win an argument,
but
same
# techniques
It should give the output as follow.
a girlfriend, or win an argument,
techniques
I used the pattern, "#\s*([^#]+$|\w*)" to do this. But it only gives output as
a
techniques
Please help me.
Below is the code I am using.
Pattern pattern = Pattern.compile("#\\s*([^#\n\r]+$|\\w*)");
Matcher matcher = pattern.matcher(s);
while (matcher.find()) {
System.out.println(matcher.group());
}