i have a string
string findText = "Paid part-time job (under 8 hours per week)";
i want to replace this string with some other string (replaceText = "Paid for job") using Regex.Replace() as follows :
Regex r = new Regex(findText, RegexOptions.IgnoreCase);
findText = r.Replace(findText, replaceText);
but the problem is that this string is not getting replaced, may be due to presence of braces in the text.
Can anyone suggest how this whole string can be replaced using Regex.Replace()?