MBAllTrim Function | |
Remove leading and trailing spaces — including double-byte spaces — from a string.
Namespace:
XSharp.VO
Assembly:
XSharp.VO (in XSharp.VO.dll) Version: 2.19
Syntax FUNCTION MBAllTrim(
cMBString AS STRING
) AS STRING
public static string MBAllTrim(
string cMBString
)
Request Example
View SourceParameters
- cMBString
- Type: String
The string to trim.
Return Value
Type:
String
A trimmed string, with leading and trailing spaces removed.
Remarks
This function is identical in functionality to AllTrim() except that it handles strings containing double-byte characters.
Remarks Tip |
---|
This function is the same as AllTrim() since .Net has unicode strings |
Examples See Also