|
Removes spaces (or a specified character) from the beginning of a string.
Syntax 1
TrimLeftStr(
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 leading spaces from a string.
|
Syntax 2
TrimLeftStr(
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 beginning of the string.
|
Supported
reference
StrLen
MBStrLen
LeftStr
RightStr
MidStr
FindStr
IsLike
InsertStr
RepeatInsertStr
CombineStr
DivideStr
TrimRightStr
UpperStr
LowerStr
ReplaceStr
ReverseStr
CStrToArray
CArrayToStr
CCsvToArray
CArrayToCsv
Chr
Ascii
RET
IntStrs
IsFullWidthChar
MeasureStr
|