System Debug Reference Manual (32650-90888)
Chapter 10 457
System Debug Standard Functions
func strup
func strup
String upshift. Returns a string which is the result of upshifting all alphabetic characters
in the source string.
Syntax
strup (
source
)
Formal Declaration
strup:str (
source
:str)
Parameters
source
The string whose alphabetic characters are to be upshifted.
Examples
$nmdebug > var cows "brindle and bessie. jenny and boss."
$nmdebug > wl strup(cows)
BRINDLE AND BESSIE. JENNY AND BOSS.
Upshift the string variable and display the results.
$nmdebug > if strup(strinput("continue? ")) = "N" then abort
Prompt the user to continue and if the response is N or n then abort.
Limitations, Restrictions
none
func strwrite
Returns a string which is the result of formatting one or more expressions in a manner
equivalent to that of the W (WRITE) command.
Syntax
strwrite (
valuelist
)
Formal Declaration
strwrite:str (
valuelist
:str)