RTrim
Turn the given value into a String and remove any trailing whitespace.
rtrim turns the given value into a String and removes any trailing whitespace characters before returning the result.
Usage
String.rtrim()
Or
rtrim(String)
Returns
String: The passed string with any trailing whitespace removed.
Example
set a = "Hello From ";
echo "$a DeployHub";
echo "${a.rtrim()} DeployHub";
Result:
Hello From DeployHub
Hello From DeployHub
Feedback
Was this page helpful?
Glad to hear it! Please tell us how we can improve.
Sorry to hear that. Please tell us how we can improve.
Last modified June 15, 2020: Remove extra headers in DMScript (102cb1a)