1. Help!
- Posted by Albert Brauneis <Dajawu36 at AOL.COM>
Nov 04, 1998
-
Last edited Nov 05, 1998
Ok I think this time I can describe the problem I am having and you will
understand what I am talking about.
say I have a sequence that is {'t','e','s','t'} and I want to add .bmp to the
end I keep ending up with this: {'t','e','s','t'}, {'.','b','m','p'} when I
want this: {'t','e','s','t','.','b','m','p'}
Albert
2. Re: Help!
-----Original Message-----
From: Albert Brauneis <Dajawu36 at AOL.COM>
Subject: Help!
>Ok I think this time I can describe the problem I am having and you will
>understand what I am talking about.
>
>say I have a sequence that is {'t','e','s','t'} and I want to add .bmp to
the
>end I keep ending up with this: {'t','e','s','t'}, {'.','b','m','p'} when I
>want this: {'t','e','s','t','.','b','m','p'}
Usually I just do this Albert,
sequence name
sequence filename
name = "test"
filename = name & ".bmp"
?filename
puts(1,filename)
puts(1,"\n") --a new line
puts(1,name & ".bmp")
These examples were just tested by yours truly.
Another way is to even call the extension a sequence...
ie.
sequence extension
extension = ".bmp"
filename = name & extension
puts(1,filename)
should put out...
test.bmp
Monty in Oregon
(hoping I haven't skipped right over your question by not fully reading it.)
3. Re: Help!
- Posted by Jeffrey Fielding <JJProg at CYBERBURY.NET>
Nov 04, 1998
-
Last edited Nov 05, 1998
Use this:
fullname =3D "test" & ".bmp"
Jeffrey Fielding
JJProg at cyberbury.net
4. Re: Help!
Hey Albert,
Its much easier to just send the source code. Everyone out here has
the interpreter already...
Monty
5. Re: Help!
- Posted by Albert Brauneis <Dajawu36 at AOL.COM>
Nov 04, 1998
-
Last edited Nov 05, 1998
Well what did you think?
Albert