My string is <br/>
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 + "'')";
but i required a string <br/>
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 + "'')';
I am try this code but cannot resolved it
var jsonStr = lookfor.replace(/"/g, "'");
var jsonStr1= lookfor.replace(/"/g, '\'');
please help....
" , what does that mean? Are you looking for values that contain a ´
´ ? Do you think your ´lookfor´ variable needs to have a break in it? ...? – AsheraH Aug 09 '18 at 06:12