Delphi中有多種方法可以截取字符串,以下為常用的幾種方法:
示例:
var
str: string;
subStr: string;
begin
str := 'Hello World';
subStr := Copy(str, 7, 5); // 從第7個字符開始截取5個字符
ShowMessage(subStr); // 輸出"World"
end;
示例:
var
str: string;
subStr: string;
startPos: Integer;
begin
str := 'Hello World';
startPos := Pos('World', str); // 查找"World"在字符串中的位置
subStr := Copy(str, startPos, 5); // 從位置startPos開始截取5個字符
ShowMessage(subStr); // 輸出"World"
end;
示例:
var
str: string;
subStr: string;
begin
str := 'Hello World';
subStr := System.Copy(str, 7, 5); // 從第7個字符開始截取5個字符
ShowMessage(subStr); // 輸出"World"
end;
這些方法適用于Delphi中的字符串類型(string)。