I have string "the best, **i have". I want to replace ", **" to " ", my code
string str = "the best, **i have";
string a = str.replace(", \\**", " ");
but if string is "the best, she have money" then string replace to "the best she have money".
thanks!