1. 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'}

Albert

new topic     » topic index » view message » categorize

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.)

new topic     » goto parent     » topic index » view message » categorize

3. Re: Help!

Use this:

fullname =3D "test" & ".bmp"

Jeffrey Fielding
JJProg at cyberbury.net

new topic     » goto parent     » topic index » view message » categorize

4. Re: Help!

Hey Albert,
     Its much easier to just send the source code.  Everyone out here has
the interpreter already...
Monty

new topic     » goto parent     » topic index » view message » categorize

5. Re: Help!

Well what did you think?

Albert

new topic     » goto parent     » topic index » view message » categorize

Search



Quick Links

User menu

Not signed in.

Misc Menu