导出到文本文件,格式对齐问题,谢谢指教(100分)

  • 主题发起人 主题发起人 abencat
  • 开始时间 开始时间
A

abencat

Unregistered / Unconfirmed
GUEST, unregistred user!
现在需要把表格中的数据导出到文本文件 ,请问如何实现这样的对齐方式,谢谢指点
格式如下:
0004196721011冯洪米 35.10 0001 Y -0.00
0004196721011冯洪米 2.70 098 Y -0.00
0004216408011冯炎光 182.25 10002 E -0.00
 
function format( s:string;count:integer):pchar;
var
len:integer;
i:integer;
begin
len:=length(s);
if len<count then
for i := 1 to count-len do
s:=s+char(32);//补空格
result:=pchar(s);
end;
 
呵呵不用这么麻烦 自己搞定了一个formatmast
 
Format函数
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
I
回复
0
查看
601
import
I
I
回复
0
查看
770
import
I
后退
顶部