| 构造器和说明 |
|---|
JdkRegexp(Pattern pattern) |
JdkRegexp(String pattern) |
JdkRegexp(String pattern,
int flags) |
JdkRegexp(String pattern,
Option option) |
| 限定符和类型 | 方法和说明 |
|---|---|
List<String> |
getNamedGroups() |
Option |
getOption() |
String |
getPattern()
Returns the pattern that is interpreted by this matcher.
|
RegexpMatcher |
matcher(CharSequence input)
对指定的文本进行匹配
|
String[] |
split(CharSequence input)
Splits the given input sequence around matches of this pattern.
|
String[] |
split(CharSequence input,
int limit)
Splits the given input sequence around matches of this pattern.
|
String |
toString() |
public JdkRegexp(Pattern pattern)
public JdkRegexp(String pattern)
public JdkRegexp(String pattern, int flags)
public String getPattern()
getPattern 在接口中 Regexppublic RegexpMatcher matcher(CharSequence input)
public String[] split(CharSequence input)
This method works as if by invoking the two-argument split method with the given input
sequence and a limit argument of zero. Trailing empty strings are
therefore not included in the resulting array.
The input "boo:and:foo", for example, yields the following results with these expressions:
Regex Result : { "boo", "and", "foo" } o { "b", "", ":and:f" }
public String[] split(CharSequence input, int limit)
The array returned by this method contains each substring of the input sequence that is terminated by another subsequence that matches this pattern or is terminated by the end of the input sequence. The substrings in the array are in the order in which they occur in the input. If this pattern does not match any subsequence of the input then the resulting array has just one element, namely the input sequence in string form.
When there is a positive-width match at the beginning of the input sequence then an empty leading substring is included at the beginning of the resulting array. A zero-width match at the beginning however never produces such empty leading substring.
The limit parameter controls the number of times the pattern is applied and therefore affects the length of the resulting array. If the limit n is greater than zero then the pattern will be applied at most n - 1 times, the array's length will be no greater than n, and the array's last entry will contain all input beyond the last matched delimiter. If n is non-positive then the pattern will be applied as many times as possible and the array can have any length. If n is zero then the pattern will be applied as many times as possible, the array can have any length, and trailing empty strings will be discarded.
The input "boo:and:foo", for example, yields the following results with these parameters:
Regex Limit Result : 2 { "boo", "and:foo" } : 5 { "boo", "and", "foo" } : -2 { "boo", "and", "foo" } o 5 { "b", "", ":and:f", "", "" } o -2 { "b", "", ":and:f", "", "" } o 0 { "b", "", ":and:f" }
public List<String> getNamedGroups()
getNamedGroups 在接口中 RegexpCopyright © 2022. All rights reserved.