在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’"。