Re: TIB: Strings
[Prev][Next][Index][Thread]
Re: TIB: Strings
NathanG@firstva.com writes:
>
> How do you add a variable to a string? If I try D->Str1 I get an error,
> so how do you do it?
> I want this:
>
> 24 -> D
> "ABC" -> Str1
> Str1 + D -> Str1
> Disp Str1
>
> To display ABC24, not ABCD, and not give me any error. I know this is
> simple, but I can't figure it out. And yes, I know I don't need the
> "Disp", it just makes it more understandable.
>
i think you are using an 83 b/c of the str1 but on the 86 this works
"ABC"->a
D=24
Eq->St(D,E
A+E->A
Disp A
hope this helps
Follow-Ups: