Remove every occurence of '
from a string except when a word ends with s,
if word ends with s'
or 's
it the '
is left in. EVERY other occurrence is removed.
Example:
Andrea's -Stays as is
Kids' - stays as is
'Kids' --> Kids
Ki'd's' --> Kids'
WHat I came up with so far :
\'(?!s )
this matches the first example and ignores it.
I have a problem with the rest