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中实现hextostr函数和strtohex函数

Delphi tpath.combine(); {结合路径}

Delphi写的dll回调c#

Delphi中使用spcomm来实现串口通讯

Delphi 简单的软件注册demo

Delphi调用程序版本信息的方法

Delphi 获取当前系统版本号

Delphi调用cmd并取得输出字符

Delphi和outputdebugstring

Delphi ioutils单元查找文件夹下所有文件

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



打赏

取消

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

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

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

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

评论

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