A
Aaron
If i use the replace function in c#
string a = "this";
a.replace("is", "something");
my output would be like thsomething
how can i replace when only the whole word matches.
string a = "is";
a.replace("is", "something");
output: something
Thanks
Aaron
string a = "this";
a.replace("is", "something");
my output would be like thsomething
how can i replace when only the whole word matches.
string a = "is";
a.replace("is", "something");
output: something
Thanks
Aaron