本文整理自网络,侵删。
Function DelChar(Ch : Char; S : String) : String; Var I : Integer;begin I := 1; While I <= Length(S) do begin If S[I] = CH then Delete(S, I, 1) else I := I + 1; end; result := S;end;
procedure TForm1.FormCreate(Sender: TObject);beginCaption:=DelChar('c','abcd');end;
相关阅读 >>
winapi 字符及字符串函数(9): lstrcat - 合并字符串
Delphi stringtobase64、base64tostring两个函数
Delphi ttabcontrol在tabitem添加关闭按钮
更多相关阅读请进入《Delphi》频道 >>