hi guys
pls help me out!
i have an issue with replace function.,
when i enter some text in a textbox as "TEXT+BOX " the function must replace the "+" charecter as "_"
this is what i have written for a replace function
String myString =txt_Asset.Text;
myString = Regex.Replace(myString, " ", "_");
myString = Regex.Replace(myString, "+", "_");
the first one is working fine.,
but myString = Regex.Replace(myStr ing, "+", "_"); this one is giving an error.,
how to replace spcial charecters in c# using replace function??