-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathRemoveWhiteSpaces.java
More file actions
29 lines (20 loc) · 782 Bytes
/
RemoveWhiteSpaces.java
File metadata and controls
29 lines (20 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
public class RemoveWhiteSpaces {
String removeWhiteSpaces(String input){
StringBuilder output = new StringBuilder();
char[] charArray = input.toCharArray();
for(char c : charArray) {
if (!Character.isWhitespace(c))
output.append(c);
}
return output.toString();
}
public static void main(String[] args) {
RemoveWhiteSpaces removeWhiteSpaces = new RemoveWhiteSpaces();
String word = "fdkjfkdj kjkjfd ";
System.out.print("remove whitespaces from `");
System.out.print(word);
System.out.print("` to no space `");
System.out.print(removeWhiteSpaces.removeWhiteSpaces("kjkfd kjfkdj "));
System.out.println("`");
}
}