Difference between revisions of "RightTrim"
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
− | + | {{HelpFiles}} | |
− | + | ||
+ | ==== rightTrim ==== | ||
− | + | Removes all occurrences of a set of characters specified in an array from the end of the input string. | |
− | + | '''Syntax''' | |
− | '' | + | rightTrim(''inputString, charArray'') |
− | rightTrim(''inputString | + | rightTrim(''inputString'') |
− | + | '''Arguments''' | |
− | '' | + | ''inputString'': is a string expression. |
− | '' | + | ''charArray'': is an array of string whose items are only characters to be trimmed. If this parameter is not specified, the function will remove all occurrences of empty spaces from the end of the input string. |
− | '' | + | '''Return type''' |
− | + | string | |
− | + | '''Example''' | |
− | '' | + | ''array charArray = {"a", "b", "c"};'' |
− | '' | + | ''string input = "catglob";'' |
− | ''string input | + | ''string result = rightTrim(input, charArray);'' |
− | '' | + | ''print(result);'' |
− | '' | + | ''//catglo'' |
− | '' | + | ''input = " catglobe ";'' |
− | '' | + | ''result = rightTrim(input);'' |
− | ''result | + | ''print(result);'' |
− | '' | + | ''//" catglobe"'' |
− | '' | + | '''Availability''' |
− | + | Version 5.2 __NOTOC__ <!-- imported from file: 684.htm--> | |
− | + | [[Category:String_Functions]] | |
− | |||
− |
Latest revision as of 11:49, 22 December 2011
rightTrim
Removes all occurrences of a set of characters specified in an array from the end of the input string.
Syntax
rightTrim(inputString, charArray)
rightTrim(inputString)
Arguments
inputString: is a string expression.
charArray: is an array of string whose items are only characters to be trimmed. If this parameter is not specified, the function will remove all occurrences of empty spaces from the end of the input string.
Return type
string
Example
array charArray = {"a", "b", "c"};
string input = "catglob";
string result = rightTrim(input, charArray);
print(result);
//catglo
input = " catglobe ";
result = rightTrim(input);
print(result);
//" catglobe"
Availability
Version 5.2