- 1
Program to delete substring from string
i need full code
5 Answers
+ 24
You can easily use String.replace().
String helloWorld = "Hello World!";
String hellWrld = helloWorld.replace("o","");
+ 3
I need a lot of money ^^
You have the intention to re-post how many times?!?
+ 1
what is substring btw
+ 1
a substring is actually a "string" that is included in another longer string...
for example:
string a="Hello World"
a substring of a is : "Hello" or "lo Worl" or even "Hello World" :)
+ 1
@Bourhan Dernayka thanks!