fIn = new file() fIn.open('articl.dat') fOut = new file() fOut.create('articl.txt') do while not fIn.eof() cread = asc(fIn.read(1)) if (cRead >= 32 and cRead <= 255) or cRead = 10 or cRead = 13 fOut.write(chr(cRead)) if cRead = 141 or cread = 10 or cread = 13 fOut.write(chr(13)+chr(10)) endif endif enddo fIn.close() fOut.close()