MBLTrim Function | |
Remove leading spaces — including double-byte spaces — from a string.
Namespace:
XSharp.VO
Assembly:
XSharp.VO (in XSharp.VO.dll) Version: 2.19
Syntax FUNCTION MBLTrim(
cMBString AS STRING
) AS STRING
public static string MBLTrim(
string cMBString
)
Request Example
View SourceParameters
- cMBString
- Type: String
The string to trim.
Return Value
Type:
StringcMBString with the leading spaces removed.
If
cMBString is a NULL_STRING or all spaces, MBLTrim() returns a NULL_STRING.
Remarks
This function is like LTrim() except that it handles strings containing double-byte characters.
Remarks Tip |
---|
This function is the same as Ltrim() since .Net has unicode strings |
Examples See Also