tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Tools and Libs > Google Guava > Basic > Splitter Omit Empty Strings

Splitter Omit Empty Strings 

Google Guava is a java library with lot of utilities and reusable components. This requires the library guava-10.0.jar to be in classpath. The following example shows using Splitter class. It splits the given string into substrings using the provided separator.

File Name  :  
com/bethecoder/tutorials/guava/base_tests/SimpleSplitterTest.java 
Author  :  Sudhakar KV
Email  :  [email protected]
   
package com.bethecoder.tutorials.guava.base_tests;

import com.google.common.base.Splitter;

public class SimpleSplitterTest {

  /**
   @param args
   */
  public static void main(String[] args) {
    //Create a splitter that trims and omits all empty tokens
    Splitter splitter = Splitter.on(",").omitEmptyStrings().trimResults();
    Iterable<String> iterable = splitter.split("One,    Two,Three,  Four,,  , Five");
    
    for (String tokens : iterable) {
      System.out.println(tokens);
    }
  }

}
   

It gives the following output,
One
Two
Three
Four
Five



 
  


  
bl  br