El método trimResults() devuelve un divisor que se comporta de manera equivalente a este divisor, pero elimina automáticamente los espacios en blanco iniciales y finales de cada substring devuelta. Por ejemplo,
Splitter.on(‘, ‘).trimResults().split(” a, b, c “) devuelve un iterable que contiene [“a”, “b”, “c”] .
Sintaxis:
public Splitter trimResults()
Valor devuelto: este método devuelve un divisor con la configuración deseada.
Ejemplo 1:
// Java code to show implementation of // trimResults() method // of Guava's Splitter Class import com.google.common.base.Splitter; import java.util.List; class GFG { // Driver's code public static void main(String[] args) { // Creating a string variable String str = "Hello, geeks, for, geeks, noida"; // Using trimResults() method. Strings that // have been split apart often need to be // trimmed. They often have surrounding whitespace. // With trimResults(), Splitter does this. List<String> myList = Splitter.on(',') .trimResults().splitToList(str); for (String temp : myList) { System.out.println(temp); } } }
Producción:
Hello geeks for geeks noida
Ejemplo 2:
// Java code to show implementation of // trimResults() method // of Guava's Splitter Class import com.google.common.base.Splitter; import java.util.List; class GFG { // Driver's code public static void main(String[] args) { // Creating a string variable String str = "Everyone. . should. Learn. Data. Structures"; // Using trimResults() method. Strings that // have been split apart often need to be // trimmed. They often have surrounding whitespace. // With trimResults(), Splitter does this. List<String> myList = Splitter.on('.') .trimResults().splitToList(str); for (String temp : myList) { System.out.println(temp); } } }
Producción:
Everyone should Learn Data Structures
Publicación traducida automáticamente
Artículo escrito por Sahil_Bansall y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA