using System; public class Test { public static void Main() { string Dos ="", PracticeName ="", PatientName ="", ClaimId ="", Charges ="", Payment ="", Status=""; var lookfor = "\\(Dos LIKE ''" + Dos + "'' OR Practice LIKE ''" + PracticeName + "'' OR Patient LIKE ''" + PatientName + "'' OR ClaimId LIKE ''" + ClaimId + "'' OR Charges LIKE ''" + Charges + "'' OR Payment LIKE ''" + Payment + "'' OR InsuranceStatus LIKE ''" + Status + "'')"; var newTemp = lookfor.Replace("\"", "'"); Console.WriteLine(newTemp); } }