Uses of Class
com.luna.common.mutable.Holder
Package
Description
提供可变值对象的封装,用于封装int、long等不可变值,使其可变
正则
-
Uses of Holder in com.luna.common.mutable
-
Uses of Holder in com.luna.common.regex
Modifier and TypeMethodDescriptionstatic String
ReUtil.extractMultiAndDelPre
(String regex, Holder<CharSequence> contentHolder, String template) 从content中匹配出多个值并根据template生成新的字符串
例如:
content 2013年5月 pattern (.*?)年(.*?)月 template: $1-$2 return 2013-5static String
ReUtil.extractMultiAndDelPre
(Pattern pattern, Holder<CharSequence> contentHolder, String template) 从content中匹配出多个值并根据template生成新的字符串
匹配结束后会删除匹配内容之前的内容(包括匹配内容)
例如:
content 2013年5月 pattern (.*?)年(.*?)月 template: $1-$2 return 2013-5