VOOZH about

URL: https://www.geeksforgeeks.org/java/splitter-class-guava-java/

⇱ Splitter Class | Guava | Java - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Splitter Class | Guava | Java

Last Updated : 11 Jul, 2025
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:
Output:
Hello
 GFG
 What's up ?
Reference: Google Guava
Comment
Article Tags: