这样的转换怎么实现?(50分)

  • 主题发起人 主题发起人 liuyang
  • 开始时间 开始时间
L

liuyang

Unregistered / Unconfirmed
GUEST, unregistred user!
s:='abc,7;def,1,23;ghi,7'
要转换成s:='abc;def;ghi' 也就是说要把字符串中的逗号和数字去掉
 
stringReplace(s,',','',[rfReplaceAll]);
stringReplace(s,['0..9'],'',[rfReplaceAll]);?
 
var
stemp:string;
begin
stemp := '';
for i:=1 to length(s) do
begin
if (s<>',') and (s not in ['0'..'9']) then
stemp := stemp + s;
end;
s := stemp;
 
to lbd88488848:
你的程序编译有些问题。好象是缺参数。
to lanbing1400:
你的程序其中(s not in ['0'..'9'])这句写错了。
应该是 not (s in ['0'..'9'])

谢谢2位的帮忙
 

Similar threads

回复
0
查看
978
不得闲
回复
0
查看
1K
不得闲
D
回复
0
查看
767
DelphiTeacher的专栏
D
D
回复
0
查看
809
DelphiTeacher的专栏
D
D
回复
0
查看
639
DelphiTeacher的专栏
D
后退
顶部