Program to remove all the white spaces from a string
In this program, our task is to remove all the white-spaces from the string. For this purpose, we need to traverse the string and check if any character of the string is matched with a white-space character or not. If so, use any built-in method like replace() with a blank.
In C, we do not have any built-in method to replace. Therefore, we need to run for loop to traverse the string and see if there is any white-space character or not. If so, then start the inner loop (j) from ith character to len and keep replacing each element with its next adjacent element. Decrease the length of the string by 1 on the termination of this loop. Repeat this process until all the white-spaces of the string are removed.
string 1
Remove white spaces
string 2
Removewhitespaces
Program
class remove_white_space {
public static void main(String[] args) {
//declare string
String str1="Remove white spaces";
str=str.replaceAll("\\s+", "");
System.out.println(str);
}
}
output
Removewhitespaces
Theory
No comments:
Post a Comment