delphi6 长字符串变短字符串
时间: 2023-07-16 15:13:52 浏览: 125
在 Delphi6 中,可以使用 `Copy` 函数将长字符串变为短字符串。`Copy` 函数的语法如下:
```
Copy(S: string; Index, Count: Integer): string;
```
其中,`S` 是原始字符串,`Index` 是起始位置,`Count` 是要复制的字符数。例如,如果要将原始字符串中的前 10 个字符复制到一个新的字符串中,可以这样写:
```
var
LongStr: string;
ShortStr: string;
begin
LongStr := 'This is a long string';
ShortStr := Copy(LongStr, 1, 10);
end;
```
现在,`ShortStr` 中的值是 `'This is a'`,它只包含原始字符串的前 10 个字符。
阅读全文