Name
|
Description
|
REXXINFO | Displays information about where the current rexx exec is running from. |
|
RUNNING | Checks to see if a task is running or not |
|
SLEEP | Used for delaying the execution of a Calling Rexx Exec |
|
SNAP | Move a dataset from one volume to another from the ISPF 3.4 panel. |
|
SORTDEMO | This is a demonstration of how to sort an array in Rexx.
Link to information page click here. |
|
STRCOUNT | Counts the number of occurrences of one string in another.
It will return a count of the string along with the position of the first occurrence of the string. If the string doesn't exist the result for both Count and FirstPos will be 0. |
|
STRREPL | This routine replaces a string of text with a replacement string within a given string. For example to replace the word 'Red' with the word 'Green' in string 'My favorite colour is Red' code: STRREPL('My favorite color is Red','Red','Green') Note: That case is sensitive |
|
USERNAME | This routine will return the name of the TSO user currently executing the EXEC. It will call the Rexx EXEC, PROPER to format the name correctly.
The routine PUSHes the data onto a stack for the calling EXEC to retrieve it. |
|
VALIDIP | Validates the format of a passed IP Address. |
|
VALIDMEM | Validates the passed member name for correct format |
|