core.noscript.text
Hi,
Not sure what to use in the RegEx to obtain only the first part of a postcode? Currently, I have (\u+) but this does not return digits.
Input = LL58 1AP
Required Output = LL58
thanks for any help.
Solved! Go to Solution.
@ramanm43 ,
this should solve for you without regex:
Getword([input],0)
cheers,
mark