-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathRemoveAChar.java
More file actions
27 lines (18 loc) · 665 Bytes
/
RemoveAChar.java
File metadata and controls
27 lines (18 loc) · 665 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
public class RemoveAChar {
public static void main(String[] args) {
String word = "GitHub";
System.out.print("word to be modified `");
System.out.print(word);
System.out.print("` ...");
System.out.print(" script will remove ");
String charToBeRemoved = "H";
String charToReplace = "-";
System.out.print(charToBeRemoved);
System.out.print(", to be replaced by ");
System.out.print(charToReplace);
System.out.print(", result: `");
word = word.replace(charToBeRemoved, charToReplace);
System.out.print(word);
System.out.println("`");
}
}