本文整理自网络,侵删。
//delphi获取两个字符之间的数
function GetChars(AString: string; fChar, EChar: char): String;
var
i, tmpPos: Integer;
begin
Result := '';
tmpPos := Pos(fChar, AString);
if tmpPos = 0 then
exit;
for i := tmpPos + 1 to Length(AString) do
begin
if AString = EChar then
break;
Result := Result + AString;
end;
end;
相关阅读 >>
Delphi 2009 泛型容器单元(generics.collections)[5]: tobject...<t> 系列
Delphi之tclientsocket和tserversocket使用tcp keepalive心跳机制实现“断网”、"断电"检测
Delphi firedac 下的 sqlite [4] - 创建数据库
更多相关阅读请进入《Delphi》频道 >>