fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. string Dos ="", PracticeName ="", PatientName ="", ClaimId ="", Charges ="", Payment ="", Status="";
  8. 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 + "'')";
  9. var newTemp = lookfor.Replace("\"", "'");
  10.  
  11. Console.WriteLine(newTemp);
  12. }
  13. }
Success #stdin #stdout 0.01s 14912KB
stdin
Standard input is empty
stdout
\(Dos LIKE '''' OR Practice LIKE ''''  OR Patient LIKE ''''  OR ClaimId LIKE '''' OR Charges LIKE '''' OR Payment  LIKE '''' OR InsuranceStatus  LIKE '''')