forum.vdsworld.com Forum Index forum.vdsworld.com
Visit VDSWORLD.com
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Remove Line Feeds (LF) From File

 
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> General Help
View previous topic :: View next topic  
Author Message
mbell
Newbie


Joined: 19 Jun 2002
Posts: 11

PostPosted: Mon Feb 16, 2004 9:03 pm    Post subject: Remove Line Feeds (LF) From File Reply with quote

Is there a way to have VDS remove line feeds (LF) from a text file?

Thanks,



Milton Bell
San Antonio, TX
Back to top
View user's profile Send private message Send e-mail
Mac
Professional Member
Professional Member


Joined: 08 Jul 2000
Posts: 1585
Location: Oklahoma USA

PostPosted: Mon Feb 16, 2004 9:59 pm    Post subject: Reply with quote

Carriage returns are @chr(13), line feeds are @chr(10).

The following example works on a single string - you can
use %s = @text(ListName) to put the file from a list into
a string, or modify the routine to work directly on a list. Wink
______________________________________________________________________________________________
Code:

rem -- ONLY remove CR and LF --
%s = @text(ListName)
%x = 1
REPEAT
  if @equal(@substr(%s, %x), @chr(13)) @equal(@substr(%s, %x), @chr(10))
     %s = @strdel(%s, %x,)
     %x = @pred(%x)
  end
  %x = @succ(%x)
UNTIL @greater(%x, @len(%s))

Cheers, Mac Smile

_________________
VDSug.dll does file IO, check/disable menu items,
non-VDS dlls, draw functions and more...
Free download (30k dll size) at:
http://www.vdsworld.com/download.php?id=361
Back to top
View user's profile Send private message Send e-mail
Display posts from previous:   
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> General Help All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum

Twitter@vdsworld       RSS

Powered by phpBB © 2001, 2005 phpBB Group