Delete all occurrences of pattern
static String delete(String inString, String pattern) { return replace(inString, pattern, ''); }