At 2:12 PM +0100 11/1/01, Signe Marie Sanne wrote:
>In order to solve my original question I have tried (still on Mac):
>put fld myField into temp
>repeat with i = 1 to number of lines of temp
>put line i of temp & numtochar(13) into line i of nytemp
>end repeat
>put nytemp into url path...

Not commenting on the cr vs. lf thing, but this script could be easily achieved like 
this:

  put numtochar(13) into tCR
  put empty into tOutput
  put fld myField into temp
  repeat for each line L in temp
    put L & tCR after tOutput
  end repeat
  delete the last char of tOutput
...


Archives: http://www.mail-archive.com/[email protected]/
Info: http://www.xworlds.com/metacard/mailinglist.htm
Please send bug reports to <[EMAIL PROTECTED]>, not this list.

Reply via email to