TI-BASIC:String To List2

From Learn @ Cemetech
Revision as of 18:20, 24 February 2016 by Maintenance script (talk | contribs) (Initial automated import)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

File:@@

Routine Summary

Converts a String into a List

Inputs

Str1

Outputs

L₁

Variables Used

A,B, Str0, Str1, L₁

Calculator Compatibility

TI-83/84/+/SE Author

Toothless the DragonAuthors

@@URL: [@@] Download

[@@]

" ABCDEFGHIJKLMNOPQRSTUVWXYZ->Str0
DelVar L1
int(length(Str1)/7->dim(L1
For(A,0,dim(L1
0
For(B,1,min(7,length(Str1)-7A
Ans+.1^(2B)inString(Str0,sub(Str1,B+7A,1
End
Ans->L1(A+1
End
"

This code was made as an alternative to the String_To_List code. it works in conjunction with the list to string alternative.

Related Routines