Justify strings
newStr = strjust(
returns a right-justified
version of the text in str
)str
.
If str
has trailing whitespace characters, then they
become leading whitespace characters in newStr
.
If str
does not have trailing whitespace characters,
then strjust
returns str
unaltered.