| Modifier and Type | Method and Description |
|---|---|
static Iterator<String> |
split(Pattern pattern,
CharSequence input)
Create a
Iterator that is splitting the input using pattern. |
static Iterator<String> |
split(String regex,
CharSequence input)
Create a
Iterator that is splitting the input using regex. |
public static Iterator<String> split(String regex, CharSequence input)
Iterator that is splitting the input using regex.regex - the regexinput - the input stringpublic static Iterator<String> split(Pattern pattern, CharSequence input)
Iterator that is splitting the input using pattern.pattern - the patterninput - the input stringPattern.splitAsStream(java.lang.CharSequence)Copyright © 2015–2020 52°North Initiative for Geospatial Open Source Software GmbH. All rights reserved.