Delphi 提取标签之间的字符串


本文整理自网络,侵删。

 
Function sExtractBetweenTagsB(Const s, LastTag, FirstTag: string): string;
var
  pLast,pFirst,pNextFirst : Integer;
begin
  pFirst := Pos(FirstTag,s);
  pLast := Pos(LastTag,s);
  while (pLast > 0) and (pFirst > 0) do begin
    if (pFirst > pLast) then // Find next LastTag
      pLast := PosEx(LastTag,s,pLast+Length(LastTag))
    else
    begin
      pNextFirst := PosEx(FirstTag,s,pFirst+Length(FirstTag));
      if (pNextFirst = 0) or (pNextFirst > pLast) then begin
        Result := Copy(s,pFirst,pLast-pFirst+Length(LastTag));
        Exit;
      end
      else
        pFirst := pNextFirst;
    end;
  end;
  Result := '';
end;

var
  s: String;

begin
  s := 'Delphi App Hello Hello SomeText here Hello Hello Hello This is a Test! Hello';
  WriteLn(sExtractBetweenTagsB(s,'Test','Hello'));
end.

输出:
Hello This is a Test

来源:https://stackoverflow.com/questions/30827180/delphi-extract-string-between-tags-duplicate-tags

相关阅读 >>

Delphi将dbgrid数据导出到excel表中

Delphi ord chr byte等转换

Delphi在字符串中删除指定字符串

Delphi 注释方法

Delphi 让窗口一直置顶,并且焦点也不移出

Delphi 系统服务和普通forms程序共存一体的实现

Delphi firedac 获取 insert 记录的自增 id

Delphi实现md5算法

Delphi idhttp多线程下载

Delphi memo1 字符串快速查找定位

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...