/ Published in: C#
Expand |
Embed | Plain Text
public static string ReplaceSingleQuote(string strText) { string strReturn = ""; if (strText.Length > 0) strReturn = strText.Replace("\'", "\\'"); return strReturn; }
You need to login to post a comment.
