bumbaermail
18th August 2008, 08:50
Hello,

How to read New Line (Enter/Return) character?

Thanks

mr_suleyman
18th August 2008, 10:17
I think that chr$(10) is enough for you

Hitesh Shah
19th August 2008, 20:49
For seq.gets function , newline character does not come because it stops reading when it encounters new line character or max length whichever is first. For seq.getc function u check the ascii value chr$(10) and / or chr$(13) depending on the platform.

When u copy file from one platform to another in binary mode , u may come across new line problem which u can avoid through ascii file transfer mode .