I’m trying to make shortenings of company names using a regular expression, by taking taking the first letter every part of the name.
Fx ‘Great Garden Centre’ → GGC
I’m not sure if this is possible without a loop, but I’m also no buff at using regex.
I’ve sofar I can only extract the first letter using this:
REGEX_EXTRACT(Company, "\\b[a-zA-Z]")
Is this possible without looping through every word?
