I have a hard time solving this problem I need to get all the word that contains apostrophe, sometimes the single used as apostrophe
This is my regex:
[\u0027\u2019]
And this is my sample words:
'Chapert 2'
Chapter's
chapters'
My expected output is
Chapter's
chapters'
But my code right now is it gets all the word that contains apostrophe or single qoute. How can i get all the word that doesn't start with apostrophe or single qoute?