remove extra blank spaces from string in java

import java.util.Scanner;
class RemoveExtraSpace{ //starting of class
    public static void main(String[] args){ //starting of the main function
        Scanner sc=new Scanner(System.in); //declaring an object of the Scanner class
        String input,output=""; 
        char c;
        int i,len;
        System.out.println("ENTER A SENTENCE.");
        input=sc.nextLine().trim(); //accepting the input
        len=input.length();
        for(i=0;i<len;i++){ //outer for loop to traverse each character
            c=input.charAt(i);
            output+=c;
            if(c==' '){
                while(input.charAt(i)==' '){ //inner while loop to skip through repeated spaces
                    i++;
                } //end of while loop
                i--; //decrementing i by 1 so that the immediate character after space is taken
            }
        } //end of for loop
        System.out.println(output); //printing the result
    } //closing of main function
} //closing of class

Are there any code examples left?
Create a Free Account
Unlock the power of data and AI by diving into Python, ChatGPT, SQL, Power BI, and beyond.
Sign up
Develop soft skills on BrainApps
Complete the IQ Test
Relative searches
how to remove space before and after a string in java string remove empty spaces java how to trim extra spaces in java how to remove extra space from string remove spaces in between string java how to remove empty spaces from a string in java with regex java remove double spaces from string how to remove extra spaces string java regex to remove extra space remove space string java how to remove all spaces in a string java' how to remove middle extra spaces in string java gfg how to remove middle extra spaces in string java java string remove word including space if it has a space how to remove extra space at the end of a string in java using string functions how to remove extra space in java using string functions eliminate all spaces from String java remove spaces in string of java java remove certain whitespace remove space in a string in java remove blank spaces in word using java remove all spaces string java how to remove extra spaces in string java how to remove spaces in string java remove empty spaces from java how to remove all spaces from string in java how to remove spaces in between string in java remove extra spaces from string in java remove extra whitespaces from string in java remove all spaces from string in java how to remove extra space from string in java remove all spaces in string java java string remove spaces remove the space in a string in java remove whitespace from string in java trim extra spaces in java string remove spaces java how to remove spaces in a string in java java remove whitespace from string how to remove the space in a string java how to remove all spaces in string in java how to remove spaces in strings in java remove extra space from a string remove extra spaces in string java Java remove spaces from String function remove double spaces in string java how to remove space string before and after in java remove whitespace in string java java remove any whitespace from string remove extra spaces from end of the word string java remove extra spaces from end of the word java how to remove spaces from string in java java remove whitespace in string how to remove space in string in java delete all spaces in java string how to remove a space in a string java how to remove extra white space in word in java how to remove extra spaces in java remove space in java string how to delete an extra space in java remove extra spaces from name java function to remove spaces from string in java how to remove empty spaces in word with java remove all spaces from a string java java regex remove extra spaces how to remove extra spaces in a string java remove Extra Spaces remove extra spaces around and in the string in java 8 remove extra spaces around and int the string eliminate spaces from a string in java how to remove empty space in string in java remove spaces from string java remove extra spaces from string java remove all spaces from string java java remove empty spaces from string java how to remove spaces from a string java remove spaces from string java string remove all empty spaces in string how to remove all spaces in string java java remove all spaces from string java how to get rid of empty spaces java code to remove extra whitespace in a string remove whitespace from string java java remove spaces from a string remove extra spaces between words in java remove additional spaces in java string remove all blank spaces in string java java remove spaces remove extra spaces from a string how to remove extra spaces and non character in java java remove spaces if they're not in between two strings java remove spaces if they're not in between a string remove extra spaces from string in java how to remove extra whitespace from a string but keep just one in java remove spaces in java java string remove al spaces java trim extra spaces how to remove blank spaces in a string java remove tabulation of space from string java remove tabulation or space from string java removing trailing spaces in java remove extra space in a sentence java remove unnecessary spaces in data java java delete spaces in string how to remove all spaces from a string in java how to remove spaces from a string java remove space in string java removing white spaces from the begining of string in java remove extra whitespace in java in a file remove extra whitespace in java remove spaces in a string java how to remove spaces in string in java how to remove spaces form word java split
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source