Quote:
Originally Posted by phossler
Actually I had thought for the Find
Code:
([A-Z]\.){2,6}
and
([A-Z]\.){2,6}
where there is a trailing space after the first case
That would Find A.B.C.<space> but I couldn't figure out how to do the Replace (trailing space) since it depends on the number of letters in the acronym, 3 in this case

|
I think it doesn't matter if some of them aren't "filled"? E.g., for a simple example if you were using ([a-z]){1,3} for the search and x\3x for the replacement I'm guessing that you'd get xx when it matched aa. The \3 would be empty.