2

我将如何使用 Delphi 从某个字符串之后的备注字段中删除数据,例如,我正在浏览的数据库中的数据显示如下:

<Data I want to keep>

======= Old Data ========
<line 1>
<line 2>
etc.

我怎么能告诉德尔福删除(包括)旧数据线之后的所有数据?但不要触摸我希望保留的数据?

4

2 回答 2

7

就像是:

var
  I: Integer;
  s: string;
begin
  s := 'your big string with ======= Old Data ======== and more';
  I:=Pos('======= Old Data ========',s);
  if I>0 then
    Delete(s, I, MaxInt);
  ShowMessage(s);
于 2012-04-06T22:36:29.097 回答
1

试试这个:

procedure myForm.ClearFromLine(value: string);
var
  i, index: integer;
begin
  index := memo.lines.IndexOf(value);
  if index = -1 then
    Exit;
  memo.lines.BeginUpdate;
  try
    for i := memo.lines.count - 1 downto index do
      memo.lines.delete(i);
  finally
    memo.lines.EndUpdate;
  end;
end;
于 2012-04-06T22:44:21.527 回答