gpt4 book ai didi

substring - 帕斯卡减法等效

转载 作者:行者123 更新时间:2023-12-04 01:54:55 27 4
gpt4 key购买 nike

我正在寻找(例如)php 的 substr 函数的 Pascal 等效项,其工作方式如下:

$new_string = substr('abcdef', 1, 3);  // returns 'bcd'

我已经找到了,但我总是花费很长时间才能这样做,所以我发布了答案,让像我这样的人能够轻松找到它。

最佳答案

您可以使用功能copy .语法如下:

copy(string, start, length);

Pascal 中的字符串似乎是从 1 开始索引的,因此如下:
s1 := 'abcdef';
s2 := copy(s1, 2, 3);

会导致
s2 == 'bcd'。

希望这可以帮助某人。

关于substring - 帕斯卡减法等效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12253682/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com