RE: Blank Spaces * X

2006-03-14 Thread S . Isaac Dealey
>> -Original Message- >> From: Jillian Koskie [mailto:[EMAIL PROTECTED] >> Sent: Tuesday, March 14, 2006 9:23 AM >> To: CF-Community >> Subject: Blank Spaces * X >> >> I need to insert 'filler' spaces for a fixed width >> file... What's the best >> way to insert '5 spaces' without doing   o

RE: Blank Spaces * X

2006-03-14 Thread Jim Davis
> -Original Message- > From: Jillian Koskie [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 14, 2006 9:23 AM > To: CF-Community > Subject: Blank Spaces * X > > I need to insert 'filler' spaces for a fixed width file... What's the best > way to insert '5 spaces' without doing   or chr(32)

Re: Blank Spaces * X

2006-03-14 Thread Charlie Griefer
repeatString() :) repeatString(' ' 5) repeatString(' ', 5) On 3/14/06, Jillian Koskie <[EMAIL PROTECTED]> wrote: > I need to insert 'filler' spaces for a fixed width file... What's the best > way to insert '5 spaces' without doing   or chr(32) five times? There > must be something more elegant

RE: Blank Spaces * X

2006-03-14 Thread Nick McClure
Create a function that accepts a numerical input and returns that number of spaces. > -Original Message- > From: Jillian Koskie [mailto:[EMAIL PROTECTED] > Sent: Tuesday, March 14, 2006 9:23 AM > To: CF-Community > Subject: Blank Spaces * X > > I need to insert 'filler' spaces for a fixed