I try to record a replacement in VBA using Search & Replace with wildcards:
I have strings comprised of 3 white spaces followed by the word normal, like " normal", and want to replace the 3 leading spaces with "1 " (a 1 followed by two spaces) the "1" in a blue font.
giving: "1 normal" with the 1 in blue and "normal" in the original format..
I tried to match:
([^s]{3})normal
but when replacing with a new format I always get the whole string re-formatted.. how to preserve the original format for the string "normal"
Any pointers, maybe straight away using VBA?