Hi all,
I want to ask a question about replacing specific word in a string
for example I have a string of:
input = a fast nope e
i want to replace word "a", if I use method replace which is:
input.replace("a", "hello");
the character a in fast will also be replaced becoming:
hello fhellost nope e
So how I can solve it?
Thanks guys!