读入分组后写成多个文件

【问题】

i have a text file with name text.txt :

09102306614,2,104
09106148895,2,104
09102567410,3,104
,...


09122586173,2,104
09126413664,2,104
09125554671,3,104

,...

i want read text1.txt with java and create text1.txt from first column data where foure character of first number like with together for sample, text1.txt included :

0910*******
0910*******
0910*******
,...

and text2.txt included :

0912*******
0912*******
0912*******
,...

thank you

【回答】

       取出第1个字段,按前4个字符分组,每组各写一个文件。Java写起来很繁琐,但用SPL就容易多了,也可以集成进Java(参考Java 如何调用 SPL 脚本)。


A

1

=file("text.txt").import@ic(#1:string)

2

=A1.group(left(~,4)).run(file("d:\\text"+string(#)+".txt").export(~))

 

A1:只读入第1列,强制转换成字符串。

A2:按照前4个字符分组,并将各组分别写入不同文件