delphi获取两个字符之间的数


本文整理自网络,侵删。

 //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三十六计之输入处理篇

Delphi 2009 泛型容器单元(generics.collections)[5]: tobject...<t> 系列

Delphi xe5中以andorid 启动应用程序

Delphi之tclientsocket和tserversocket使用tcp keepalive心跳机制实现“断网”、"断电"检测

Delphi firedac 下的 sqlite [4] - 创建数据库

Delphi中模拟鼠标点击事件

Delphi动态复选框源码

Delphi 时间年月日,星期

Delphi shellexecute 发送邮件

Delphi检测android mock位置

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



打赏

取消

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

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

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

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

评论

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