Regex to find strings that start with a specific character
- by Vijay Narayan
I am trying to find words starts with a specific character like:
'Lorem ipsum #text. Second lorem ipsum. How #are You. It's
ok. Done. Something #else now.'
I need to get all words starts with "#". so my expected results are #text, #are, #else
Any ideas?