I want to create a program that could replace a specific word which I can freely set.
Sample word:
Dim sample As String = "TWINKLE TWINKLE LITTLE STAR FISH"
i want to replace the word STAR into BAT so the new output would be:
TWINKLE TWINKLE LITTLE BAT FISH
is this possible? thanks in advance.