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

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


慕工程0101907
浏览 1135回答 2
2回答

阿波罗的战车

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;beginif 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;beginMidStr := Copy(Str, From, Size)end;function LeftStr(Const Str: String; Size: Word): String;beginLeftStr := Copy(Str, 1, Size)end;这几个函数经常结合Pos, Length, Copy使用

湖上湖

substring:=copy(sourcestring,iStartIndex,length);example:s:='hello world!';s1:=copy(s,8,6);
打开App,查看更多内容
随时随地看视频慕课网APP