.net相当于Delphi的QuotedStr函数

时间:2010-03-08 12:41:52

标签: c# .net delphi

.net是否具有Delphi的QuotedStr功能。这将用两个引号字符替换所有引号,然后在开头和结尾添加引号,例如

让我们假设变量s持有字符串:

Welcome to Steve's Store

然后QuotedStr(s)将返回:

'Welcome to Steve''s Store'

1 个答案:

答案 0 :(得分:4)

像这样:

"'" + str.Replace("'", "''") + "'"