Delphi中QuotedStr的用法是什么

小億
184
2023-11-21 14:32:24

在Delphi中,QuotedStr是一個(gè)函數(shù),用于在字符串周?chē)砑右?hào)。它的用法如下:

QuotedStr(‘string’)

其中,'string’是要添加引號(hào)的字符串。函數(shù)會(huì)返回一個(gè)新的字符串,該字符串在原始字符串周?chē)砑恿艘?hào)。

例如,以下代碼演示了QuotedStr的用法:

var
  str: string;
begin
  str := QuotedStr('Hello World');
  ShowMessage(str); // 顯示結(jié)果為:'Hello World'
end;

這里,QuotedStr函數(shù)將字符串"Hello World"包裝在引號(hào)中,并將結(jié)果賦值給變量str。然后,ShowMessage函數(shù)用于顯示str的值,結(jié)果為"‘Hello World’"。

0