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

Last modified June 15, 2020: Remove extra headers in DMScript (102cb1a)