Post Reply 
[QUESTION] "internal string table"
12-07-2016, 09:24 PM (This post was last modified: 12-07-2016 09:36 PM by compsystems.)
Post: #3
RE: [QUESTION] "internal string table"
Thanks, I want to create an output string where each line can be displayed independently, it seems that CAR (10) "\n" does not do what I want when copy in a text editoras notepad++

test
PHP Code:
EXPORT id2str()
BEGIN
 LOCAL int
str;
 
str:=""
 print();
 print( 
"*****  *****" );   
 for 
int from 1 to 50 do 
   print( 
int " :"  STRINGFROMID(int) );
   
str:= str char(10) + int " :"  STRINGFROMID(int);
   
wait(); // line by line printing
 
end
 return 
str;
END

Quote:"\n1 :The password is invalid\n2 :Program Catalog\n3 :Sto ▶\n4 :Echo\n5 :Cancel\n6 :OK\n7 :Characters\n8 :Exam\n9 :Exam Mode Configuration\n10 :Page\n11 :Select a character and press OK\n12 :More\n13 :Edit\n14 :Choose\n15 :✓\n16 :✓\n17 :Angle Measure\n18 :Number Format\n19 :Separators\n20 :Complex\n21 :Radians\n22 :Degrees\n23 :Choose angle measure\n24 :Standard\n25 :Fixed\n26 :Scientific\n27 :Engineering\n28 :Rounded\n29 :Floating\n30 :Fraction\n31 :Mixed Fraction\n32 :Choose format for numbers\n33 :Choose decimal places to display\n34 :Choose digits to display\n35 :Dot (.)\n36 :Comma (,)\n37 :Choose decimal mark character\n38 :Allow complex output from real input\n39 :Home Settings\n40 :CAS Settings\n41 :Choose number of digits to use\n42 :Recursive Evaluation\n43 :Maximum recursive variable evaluations\n44 :Recursive Replacement\n45 :Maximum recursive variable replacements\n46 :Epsilon\n47 :Enter ε limit for conversion to 0\n48 :Recursive Function\n49 :Maximum recursive function calls\n50 :Probability"
Find all posts by this user
Quote this message in a reply
Post Reply 


Messages In This Thread
RE: [QUESTION] "internal string table" - compsystems - 12-07-2016 09:24 PM



User(s) browsing this thread: 1 Guest(s)