MPE/iX Quick Reference Guide (32650-90881)

170 Chapter6
System Debug
Debugging your system
func strdown
String downshift. Returns a string that is the result of downshifting all alphabetic
characters in the source string.
strdown (
source
)
Formal Declaration
strdown:str (
source
:str)
func strextract
String extract. Returns a string (extracted) from the speciļ¬ed virtual address.
strextract (
virtaddr
[
length
])
Formal Declaration
strextract:str (
virtaddr
:ptr [
length
:u16=$4])
func strinput
Prompts on the input device for user input and returns the user input line as a string.
strinput (
prompt
)
Formal Declaration
strinput:str (
prompt
:str)
func strins
String insert. Returns a string after inserting another string into the source string.
strins (
insert source position
)
Formal Declaration
strins:str (
insert
:str
source
:str
position
:u16)
func strlen
String length. Returns the current size of a string.
strlen (
source
)
Formal Declaration
strlen:u32 (
source
:str)
func strltrim
String left trim. Deletes leading blanks from the source string.
strltrim (
source
)
Formal Declaration