Previous Thread
Next Thread
Print Thread
STR FUNCTION AND STRINGS #35671 10 Nov 22 08:14 AM
Joined: Jun 2001
Posts: 430
V
Valli Information Systems Online Content OP
Member
OP Online Content
Member
V
Joined: Jun 2001
Posts: 430
was wondering if this has changed.
MAP1 S,S,10,"12/12/2022"
? S
? STR(S)
END

12/12/2022
12

i expected it since it was already a string that i would get the full date back but maybe not?

thanks

Re: STR FUNCTION AND STRINGS [Re: Valli Information Systems] #35677 10 Nov 22 10:27 AM
Joined: Jun 2001
Posts: 11,925
J
Jack McGregor Online Content
Member
Online Content
Member
J
Joined: Jun 2001
Posts: 11,925
I don't have an old AMOS machine handy to test this against, but I can tell you that it worked the same as far back as 6.4.1558.

Although it's a bit counter-intuitive, the STR(x) function expects x to be a number (since after all, the purpose of the function is to convert a numeric value to a string representation). In a traditional strongly typed language like C, your STR(S) function call would generate a compiler error (mismatched argument type). But in the world of AlphaBasic's automatic string-numeric conversion, the compiler inserts the equivalent of VAL(S) call to convert S to a numeric value so that STR() can convert it from the expected number to a string. So in other words, it gets turned into STR(VAL(S))

While we're on the subject, a couple of related side notes:

Arguments passed to the PRINT statement, as well as XCALL and function arguments, get compiled with their own type indicators, eliminating the need for conversions based on expected types. In other words, PRINT A does not have to assume anything about A because the compiler inserts a type identifier into the RUN code, allowing PRINT to select the appropriate type logic. But PRINT STR(S) gets in the way of that intelligence by forcing a double conversion when PRINT otherwise would have determined that none was needed.

The + and = operators, on the other hand, have to determine whether to operate in string or numeric mode based on the precedent established before the operator is seen in the statement.

The Explicit Plus Operators and Explicit Comparison Operators provide a way to override the automatic conversion logic to make your intent explicit.


Moderated by  Jack McGregor, Ty Griffin 

Powered by UBB.threads™ PHP Forum Software 7.7.3