DELPHI 去字符串中所有空格
Posted 西瓜的夏天
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DELPHI 去字符串中所有空格相关的知识,希望对你有一定的参考价值。
class function yxm.trimblank(s: string): string;
var
i, j: integer;
begin
repeat
i := pos(‘ ‘, s);
j := length(s);
if i > 0 then
s := copy(s, 1, i - 1) + copy(s, i + 1, j - i);
until i = 0;
Result := s;
end;
以上是关于DELPHI 去字符串中所有空格的主要内容,如果未能解决你的问题,请参考以下文章