Difference between revisions of "SET MAPCHAR"
From Recital Documentation Wiki
Yvonnemilne (Talk | contribs) |
Helengeorge (Talk | contribs) |
||
(5 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
==Purpose== | ==Purpose== | ||
Define an alternate character to map CHR(0) | Define an alternate character to map CHR(0) | ||
Line 15: | Line 8: | ||
==See Also== | ==See Also== | ||
− | + | [[???]], [[ASC()]], [[CHR()]] | |
Line 23: | Line 16: | ||
==Example== | ==Example== | ||
− | < | + | <code lang="recital"> |
? chr(64) | ? chr(64) | ||
@ | @ | ||
set mapchar to 64 | set mapchar to 64 | ||
− | ? chr(0) | + | ? chr(0) |
@ | @ | ||
− | + | </code> | |
==Products== | ==Products== | ||
− | Recital | + | Recital Server, Recital |
+ | [[Category:Documentation]] | ||
+ | [[Category:Commands]] | ||
+ | [[Category:Set_Commands|MAPCHAR]] | ||
+ | [[Category:Input Output]] | ||
+ | [[Category:Input Output Set Commands]] | ||
+ | [[Category:Printing]] | ||
+ | [[Category:Printing Set Commands]] |
Latest revision as of 16:22, 23 November 2009
Purpose
Define an alternate character to map CHR(0)
Syntax
SET MAPCHAR TO <expN>
See Also
Description
The SET MAPCHAR TO command allows the user to define an alternate character to map CHR(0) for output processing. Whenever the CHR(0) function is used, or the ??? "{NULL}" command is used and MAPCHAR is set to a value other than 0, the CHR(0) character is translated into the character specified by the decimal value in <expN>. On output any occurrences of the character specified by <expN> will be translated back to CHR(0). Setting MAPCHAR TO 0 disables character mapping. The default setting is 0.
Example
? chr(64) @ set mapchar to 64 ? chr(0) @
Products
Recital Server, Recital