去除多余的逗号
parent
fca189fa73
commit
d28f81dc68
|
@ -18,7 +18,7 @@ public class ReUtil
|
||||||
* 正则中需要被转义的关键字
|
* 正则中需要被转义的关键字
|
||||||
*/
|
*/
|
||||||
public final static Set<Character> RE_KEYS = new HashSet<>(
|
public final static Set<Character> RE_KEYS = new HashSet<>(
|
||||||
Arrays.asList('$', '(', ')', '*', '+', '.', '[', ']', '?', '\\', '^', '{', '}', '|'));;
|
Arrays.asList('$', '(', ')', '*', '+', '.', '[', ']', '?', '\\', '^', '{', '}', '|'));
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 正则替换指定值<br>
|
* 正则替换指定值<br>
|
||||||
|
|
Loading…
Reference in New Issue