在一个字符串中取出子串的函数是什么?(50分)

  • 主题发起人 主题发起人 zhengyong
  • 开始时间 开始时间
Z

zhengyong

Unregistered / Unconfirmed
GUEST, unregistred user!
请问:在一个字符串中取出子串的函数是什么?
 
copy函数
result := Copy(s :string : begin
pos , count :integer);
s:='34456';
F:= copy(S ,2, 3) ;
{ f= '445' }
 
function Copy(S;
Index, Count: Integer): string;
function Pos(Substr: string;
S: string): Integer;
 
Copy函数是截取子串,delete是从一个串里删除一个子串
 
Copy
StrPcopy
Strcopy
 
Delete(var S: string;
Index, Count:Integer);
Copy(S: string;
Index, Count: Integer): string;
 
答案同上,请分数也同上

----瞎说
 
pos
copy
strcopy
strpcopy
 
多人接受答案了。
 
后退
顶部