I have a string and need to remove all '#' symbols, but only in case when they are placed at the beginning of the word. For example having next string:
"#quick ##brown f#x"
Should be transformed into:
"quick brown f#x"
How it could be achieved using regular expressions in javascript? Thank you in advance for help