本文整理自网络,侵删。
SysUtils.LastDelimiter - 判断一个字符串在另一个字符串中最后出现的位置
该函数不区分大小写, 举例:
--------------------------------------------------------------------------------
var
s: string;
i: Integer;
begin
s := 'CodeDear Delphi';
i := LastDelimiter('Del',s);
ShowMessage(IntToStr(i)); {12}
end;
相关阅读 >>
Delphi 使用钩子函数 - 钩子链和 callnexthookex 的返回值
Delphi xe7 新的并行库 system.threading
更多相关阅读请进入《Delphi》频道 >>