removePossessiveApostrophes method Null safety
- String text
Removes all posessive apostrophies from text, e.g Mary's returns Mary.
Implementation
static String removePossessiveApostrophes(String text) =>
text.replaceAll(RegExp(rPosessiveApostrophe), '');