Guava's
Splitter Class provides various methods to handle splitting operations on string, objects, etc. It extracts non-overlapping substrings from an input string, typically by recognizing appearances of a separator sequence. This separator can be specified as a single character, fixed string, regular expression or CharMatcher instance.
Declaration: Following is the declaration for
com.google.common.base.Splitter class:
@GwtCompatible(emulated = true)
public final class Splitter
extends Object
The following table gives a brief summary about the methods of Guava's Splitter class:
👁 Image
Example:
Output:
[GeeksforGeeks, is, the, best, website, to, prepare, for, interviews]
Some other methods provided by the Splitter class are:
👁 Image
Example: