Can a regular expression match whitespace or the start of a string?
I\'m trying to replace currency the abbreviation GBP with a £ symbol. I
\b is word boundary, which can be a white space, the beginning of a line or a non-alphanumeric symbol (\bGBP\b).
\b
\bGBP\b