John,
ANDy wanted to replace any instance of
apostrophe-space-CAP letter with
apostrophe-ÿ-CAP letter. Why I don't know.
Using Edit>Find and Replace>More>Use Wildcards.
( ) are the wildcard grouping symbols. [ ] are the wildcard range
symbols. In the find what field:
(') [A-Z]
means find any sequence containing a group of 1 ' and a single space
and a group of 1 capital letter that is in the range A-Z.
The replace with field:
\1ÿ\2
means replace with the content of group 1 the ÿ and the content of
group 2.
HTH
John Doue - 02 Mar 2005 09:54 GMT
> John,
>
[quoted text clipped - 16 lines]
>
> HTH
Greg, I am very thankful for your detailed explanations.
Thanks a million

Signature
John Doue