Delphi 学习大师
会员中心
搜索
Delphi 学习大师
文章详情
副标题
delphi 截取两个字符之间的内容
2018-10-30
delphi 截取两个字符之间的内容
function copyBegin2EndStr(begindex, endindex, source: string): string; //截取两个字符之间的内容
var
n, m: Integer;
begin
n := Pos(begindex, source);
m := Pos(endindex, source);
Result := Copy(source, n + 1, m - n - 1);
end;
线程
阅读81
发表评论
登录评论
匿名评论
提交
提交