removeWhere: removes all characters that satisfy the test
String removeWhere(bool Function(String element) test) => this?.replaceAllMapped(RegExp(r''), (Match match) => "") ?? "";