替换字符串中的数据
static String replace(String text, Pattern from, String replace) { return text.replaceAll(from, replace); }