gpt4 book ai didi

string - Delphi-在某些字符串后解析备忘录

转载 作者:行者123 更新时间:2023-12-03 19:00:13 25 4
gpt4 key购买 nike

我有一条备注行:

Mahogany
Unpolished
In Stock : Yes
Total Stock : 102
Redwood
Polished
In Stock : Yes
Total Stock : 80
Pine
Polished
In Stock : Yes
Total Stock : 22


我只想拥有Redwood的总库存行。
由于有很多相同的字符串


总存货


我不能使用此字符串作为关键字。因此,我使用“ Redwood”,但是我不知道如何在“ Redwood”之后获得“ Total Stock”行。

var
i: Integer;
s: string;
begin
for i := 0 to mem0.lines.Count - 1 do
begin
if (AnsiContainsStr(mem0.lines[i], 'Redwood')) then
begin
// s:= Redwood's total stock, how to do this ?
end
end;
end;

最佳答案

缺少的代码是:

s := mem0.Lines[i+3];


这假设数据的格式始终与问题中所见完全相同。如果该假设有效,那么此简单代码就是最佳解决方案。



使用具有良好解析器和发射器的标准人类可读结构化数据格式(如JSON或YAML)中的一种可能更有意义。遗憾的是,在Delphi上对YAML的支持实际上是不存在的,因此只剩下JSON。

关于string - Delphi-在某些字符串后解析备忘录,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25226847/

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