处理每个正则表达式组(参见下一节)匹配给定String的子字符串。
void eachMatch(String regex, Closure clos)
没有回报价值。
以下是此方法的使用示例 -
class Example {
static void main(String[] args) {
String s = "HelloWorld";
s.eachMatch(".") {
ch -> println ch
}
}
}
当我们运行上述程序时,我们将得到以下结果 -
H
e
l
l
o
W
o
r
l
d