|
Removes spaces (or a specified character) from the end of a string.
Syntax 1
TrimRightStr(
str
)
Remove the space.
Parameters
str
|
|
Type:
|
character
|
|
The character to be removed.
|
Return Value
|
|
Type:
|
character
|
|
The string after it has been stripped.
|
Explanation
Syntax 1 removes trailing spaces from a string.
|
Syntax 2
TrimRightStr(
str,
target
)
Remove the target character (target).
Parameters
str
|
|
Type:
|
character
|
|
The character to be removed.
|
target
|
|
Type:
|
character
|
|
The characters to remove.
|
Return Value
|
|
Type:
|
character
|
|
The string after it has been stripped.
|
Explanation
Syntax 2 removes the specified character (target) from the end of the string.
|
Supported
reference
StrLen
MBStrLen
LeftStr
RightStr
MidStr
FindStr
IsLike
InsertStr
RepeatInsertStr
CombineStr
DivideStr
TrimLeftStr
UpperStr
LowerStr
ReplaceStr
ReverseStr
CStrToArray
CArrayToStr
CCsvToArray
CArrayToCsv
Chr
Ascii
RET
IntStrs
IsFullWidthChar
MeasureStr
|