Removes a text from the String.
String
String operator -(String? s) { if (isBlank) { return ''; } if (s.isBlank) { return this; } return replaceAll(s!, ''); }