在Delphi中,QuotedStr是一个函数,用于在字符串周围添加引号。它的用法如下:
QuotedStr(‘string’)
其中,'string’是要添加引号的字符串。函数会返回一个新的字符串,该字符串在原始字符串周围添加了引号。
例如,以下代码演示了QuotedStr的用法:
var
str: string;
begin
str := QuotedStr('Hello World');
ShowMessage(str); // 显示结果为:'Hello World'
end;
这里,QuotedStr函数将字符串"Hello World"包装在引号中,并将结果赋值给变量str。然后,ShowMessage函数用于显示str的值,结果为"‘Hello World’"。