Answers for "java list remove spaces"

0

how to remove spaces from an array in java

for (int i = 0; i < temp.length; i++){
    temp[i] = if(!temp[i].trim().equals("") || temp[i]!=null)temp[i].trim();
}
Posted by: Guest on June-02-2020
-1

remove spaces java

public class StringSpaces {
  public static void main(String[] args) {	
    String str = "  Hello    World		";
    str = str.trim();
    System.out.println("String- " + str);
  }
}
Posted by: Guest on December-30-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language