标签: c# .net delphi
.net是否具有Delphi的QuotedStr功能。这将用两个引号字符替换所有引号,然后在开头和结尾添加引号,例如
让我们假设变量s持有字符串:
Welcome to Steve's Store
然后QuotedStr(s)将返回:
QuotedStr(s)
'Welcome to Steve''s Store'
答案 0 :(得分:4)
像这样:
"'" + str.Replace("'", "''") + "'"