-----Original Message-----
From: owner-ti-basic@lists.ticalc.org [mailto:owner-ti-basic@lists.ticalc.org]On Behalf Of The Kellers
Sent: Wednesday, August 04, 1999 1:04 PM
To: ti-basic@lists.ticalc.org
Subject: TIB: Re: RE: FW: Re: Strings Answer to basic questionOr on the 86, replace y1 with y99, wich is almost never used. Then delete it with DelVar()Philippp Keller----- Original Message -----From: Jeff TyrrillSent: 03 August 1999 18:53Subject: TIB: RE: FW: Re: Strings Answer to basic questionThis works fine, but to avoid deleting y1 (or when using a TI-85), remove the ",y1" from the end of the LinR statement and in the next Eq>St statement, replace "y1" with "RegEq".-----Original Message-----
From: owner-ti-basic@lists.ticalc.org [mailto:owner-ti-basic@lists.ticalc.org]On Behalf Of Matthew
Sent: Tuesday, August 03, 1999 10:31 AM
To: ti-basic@lists.ticalc.org
Subject: TIB: FW: Re: Strings Answer to basic question-----Original Message-----
From: owner-ti-basic@lists.ticalc.org [mailto:owner-ti-basic@lists.ticalc.org] On Behalf Of The Kellers
Sent: Wednesday, May 26, 1999 5:45 PM
To: ti-basic@lists.ticalc.org
Subject: TIB: Re: StringsI'm surprised that nobody has posted the following yet. It was on the list a while ago.This is for the '86, I don't know about he 83's commands, but I think it should work on there too."ABC" -> S *Create a String58 -> N *The number I want to concatenate with the stringLinR {1,2} , {N,N} , y1 *Linear Regression with points (1,N) and (2,N).*The resulting equation is stored in y1.Eq>St(y1,S2) *Store y1 to S2 as a string. The value of S2 is "58+0x"sub(S2,1,lngth S2-3) -> S2 *Chop of the "+0x" partS+S2 -> S *concatenate the stringsNo I wonder though, can you store the equation resulting of a linear regression to an equation variable on the TI-83? I believe that on the '82 the equation was automatically stored to a variable called "RegEq", or something of the sort... Would someone with an 83 please check the manual?Philipp Keller----- Original Message -----From: Nathan Gaylinn <NathanG@firstva.com>To: TI-BASIC <ti-basic@lists.ticalc.org>Sent: 25 May 1999 17:06Subject: TIB: Strings>
> 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.
>
>