读书人

vb2008 怎么循环txt内容

发布时间: 2012-06-05 13:54:06 作者: rapoo

vb2008 如何循环txt内容
vb2008 如何循环txt内容,再一行一行的写到其他txt中, 如何有重复的去掉

[解决办法]
msdn search TextReader TextWriter

[解决办法]

VB.NET code
...'use TextReader read textfile to stringReadDim stringToWrite As StringstringToWrite = string.Join(VbCrLf, stringRead.Split(VbCrLf).Distinct())'use TextWriter write stringToWrite to another textfile... 

读书人网 >VB Dotnet

热点推荐