FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
java-coding-problems/src/RemoveWhiteSpaces.java at main · Sherlock0731/java-coding-problems · GitHub
Sherlock0731
/
java-coding-problems
Public
forked from
jfullstackdev/java-coding-problems
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
java-coding-problems
/
src
/
RemoveWhiteSpaces.java
Copy path
More file actions
More file actions
Latest commit
History
History
History
29 lines (20 loc) · 782 Bytes
Breadcrumbs
java-coding-problems
/
src
/
RemoveWhiteSpaces.java
Copy path
File metadata and controls
29 lines (20 loc) · 782 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
(
"`"
);
}
}
Back
|
FazBrowse Home
|
New Git URL