字符串操作时,函数insert(s1,s2,3)和关键字insert重复了?????急急急
字符串操作时,函数insert(s1,s2,3)和关键字insert重复了?????
详见代码:
with ADOTable1 do
begin
s:=':';
tstr1.CommaText:='1100 2200';
s1:=tstr1[0];
Insert(s,s1,3);//字符串插入操作,不是数据插入,编译时总认为是数据插入,提示参数错误;
Edit1.Text:=s1;
end;
不想用其他的函数,例如copy()等等。