String upshift.
Returns a string which is the result of upshifting all alphabetic characters
in the source string.
Syntax |
 |
Formal Declaration |
 |
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