Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Replace ’ with this # while the ’ is in a word.
Tried this FIND ([A-z]{1,})’([a-z]{1,}) and this REPLACE \1#\2
And not sure what I have done wrong. It doesn’t work. Any help appreciated.
@John-Tucker
Maybe try:
Find ([A-Za-z])'(?=[a-z]) Repl \1#
([A-Za-z])'(?=[a-z])
\1#
Thanks, that worked a treat!