Remove FormFeed from .txt file

Started by pzig98, October 30, 2014, 06:56:21 AM

Previous topic - Next topic

pzig98


Hi,

Trying to remove form feed characters from text files...  I find no predefined constant, @FF in the manual...

Ideas?

JTaylor

Use the Num2Char() function.

   Num2Char(12)

Jim

pzig98

So then,

FormFeed = Num2Char(12)

page = StrReplace(page,FormFeed,"")

?

JTaylor

That should work.  Assuming I read my ASCII chart correctly.

Jim

pzig98