在Delphi中,copy函數用于從字符串中復制指定數量的字符,并返回一個新的字符串。
copy函數的語法如下: copy(SourceString, StartIndex, Count)
參數說明:
例如,以下示例演示了如何使用copy函數:
var
SourceString, CopiedString: string;
begin
SourceString := 'Delphi is a powerful programming language.';
// 從第6個字符開始復制12個字符
CopiedString := copy(SourceString, 6, 12);
ShowMessage(CopiedString); // 輸出:'is a powerful'
end;
在上述示例中,我們從第6個字符開始復制12個字符,將結果存儲在CopiedString變量中,并通過ShowMessage函數顯示出來。