delphi 中有取子串的函数吗(0分)

  • 主题发起人 主题发起人 mjf_jigh
  • 开始时间 开始时间
M

mjf_jigh

Unregistered / Unconfirmed
GUEST, unregistred user!
谢谢各位可以告诉我吗
 
Copy(s,index,count);
s代表字符串
index 表示开始位置
count 表示取几个
 
还可以用Copy(SourceStr,Index,Count)来封左取和右取函数
 
copy is right
copy(s:string;ori,count:integer);
 
如果是用delphi6,可以用Leftstr,RightStr,不过用Copy实现的功能会多一点。
LeftStr(const AText: string; ACount: Integer): string;
RightStr(const AText: string; ACount: Integer): string;
 
[:D][red][/red]有
 
后退
顶部