String replaceList(List<String> from, String replace) { String newString = this; for (String _from in from) { newString = newString.replaceAll(_from, replace); } return newString; }