Delphi的QuotedStr函數是用于在字符串兩側添加引號的函數,可以聲明如下:
function QuotedStr(const S: string): string;
其中,`const S: string`是傳入的字符串參數,返回值為添加引號后的字符串。
使用示例:
var??str:?string; begin
??str?:=?QuotedStr('Hello?World');?//?將字符串'Hello?World'添加引號
??ShowMessage(str);?//?顯示結果為:'Hello?World' end;