CleanString |
|
CleanString, for each char in string: if ((char .gt. 31) and (char .lt. 127)) keep it,
otherwise turn it into a space
|
Compare |
|
Compares two strings and returns an integer specifying the
result of the comparison.
The java version returns 'true' or 'false' as the result.
|
Concatenate |
|
Concatenate String1 with String2 and returns concatenated string.
|
GetField |
|
GetField, get a field out of a string using specified delimiter(s). Note that any leading or trailing whitespaces are still present.
|
GetFieldCount |
|
GetFieldCount, Finds the count of all fields within the
inputRecord found from startindex to the end of the inputRecord.
|
GetFixedWidthField |
|
GetFixedWidthField, Given an Input of fixed-width
fields, return the nth(FieldID) Field in the record.
|
GetMultiDelimitedField |
|
Given a sourceString of delimited fields, return the nth(FieldID) Field
in the record from startIndex. The startIndex and fieldID are 1 based. |
GetMultiDelimitedFieldCount |
|
Finds the count of all fields within the inputRecord found from
startindex to the end of the inputRecord. The field and index are 1-based. |
GetNextDelimiterIndex |
|
GetNextDelimiterIndex, Finds the index of the first
character matching one of the provided delimiter characters.
The search begins at startindex within the inputRecord.
|
GetREDelimitedField |
|
GetREDelimitedField, this command returns the requested field contained in the input string using the passed in regular expression as the delimiter(s).
|
GetREDelimitedFieldCount |
|
GetREDelimitedFieldCount, this command returns the number of fields contained in the input string using the passed in regular expression as the delimiter(s).
|
GetSubstringsInString |
|
Extract dynamic substring from a string using regular expressions.
|
GetSystemEnviron |
|
GetSystemEnviron, get a system environment variable value
|
GetSystemUser |
|
Get the USERID of the currently logged on user as stored in System Environment variables.
|
GetTrimmedField |
|
GetTrimmedField, get a trimmed field out of a string using specified delimiter(s).
|
Index |
|
Returns the position of the first occurrence of one string
within another string. -1 if not found at all
|
Left |
|
Returns a string of a specified number of characters copied from the beginning of another string.
|
LeftTrim |
|
A new string trimmed of leading tabs and spaces.
|
Length |
|
Returns the length of a string or variable.
|
Replace |
|
Replace 'find' substring with 'replace' substring
|
Right |
|
Returns a string of a specified number of characters copied from the end of another string.
|
RightTrim |
|
A new string trimmed of trailing tabs and spaces.
|
SubString |
|
Returns a portion of a string based on character index.
|
ToLowerCase |
|
Returns a copy of a string, with all letters converted to lowercase.
|
ToUpperCase |
|
Returns a copy of a string after converting all letters to uppercase.
|
Trim |
|
A new string trimmed of leading and trailing tabs and spaces.
|