为了账号安全,请及时绑定邮箱和手机立即绑定

Delphi中用来截取字符的函数,以及使用方法?

Delphi中用来截取字符的函数,以及使用方法?

慕工程0101907 2019-02-15 15:11:50
Delphi中用来截取字符的函数,以及使用方法?
查看完整描述

2 回答

?
阿波罗的战车

TA贡献1862条经验 获得超6个赞


delphi的字符截取函数LeftStr, MidStr, RightStr

这几个函数都包含在StrUtils中,所以需要uses StrUtils;
假设字符串是 Dstr := ’Delphi is the BEST’, 那么
LeftStr(Dstr, 5) := ’Delph’
MidStr(Dstr, 6, 7) := ’i is th’
RightStr(Dstr, 6) := ’e BEST’

~~~~~~~~~~~~~~~~~~~~~~~~~
function RightStr
(Const Str: String; Size: Word): String;
begin
if Size > Length(Str) then Size := Length(Str) ;
RightStr := Copy(Str, Length(Str)-Size+1, Size)
end;
function MidStr
(Const Str: String; From, Size: Word): String;
begin
MidStr := Copy(Str, From, Size)
end;
function LeftStr
(Const Str: String; Size: Word): String;
begin
LeftStr := Copy(Str, 1, Size)
end;

这几个函数经常结合Pos, Length, Copy使用



查看完整回答
反对 回复 2019-03-19
?
湖上湖

TA贡献2003条经验 获得超2个赞

substring:=copy(sourcestring,iStartIndex,length);
example:
s:='hello world!';
s1:=copy(s,8,6);

查看完整回答
反对 回复 2019-03-19
  • 2 回答
  • 0 关注
  • 1134 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信