Regular Expressions
正则表达式
Create
创建
re-pattern Returns an instance of java.util.regex.Pattern, for use, e.g. in re
re-pattern 返回一个java.util.regex.Pattern实例.使用在例如 re-matcher中.
re-matcher Returns an instance of java.util.regex.Matcher, for use, e.g. in re
re-matcher 返回一个java.util.regex.Matcher,使用在例如 re-find中.
Use
使用
re-find Returns the next regex match, if any, of string to pattern, using j
re-find 返回下一个正则表达式的匹配,如果有的话则返回字符串形式的pattern(模式) ,使用java.util.regex.Matcher.find().使用re-groups返回这个分组.
re-matches Returns the match, if any, of string to pattern, using java.util.re
re-matches 返回该匹配,如果有的话,则返回字符串形式的pattern(模式),使用java.util.regex.Matcher.matches(),使用re-groups返回这个分组.
re-seq Returns a lazy sequence of successive matches of pattern in string,
re-seq 返回一个惰性序列,在字符串中逐次匹配得到.
re-groups Returns the groups from the most recent match/find. If there are no
re-groups 返回分组. ???不会了= =|
基础的都发完了….