Functions.MBAllTrim 方法 | |
删除字符串中的前导和尾随空格,包括双字节空格。
命名空间:
XSharp.VO
程序集:
XSharp.VO (在 XSharp.VO.dll 中) 版本:2.22 GA
语法 FUNCTION MBAllTrim(
cMBString AS STRING
) AS STRING
public static string MBAllTrim(
string cMBString
)
查看代码参数
- cMBString
- 类型:String
要修剪的字符串。
返回值
类型:
String
一个修剪后的字符串,前导和尾随空格已被删除。
备注
此函数的功能与 AllTrim() 相同,但它处理包含双字节字符的字符串。
备注 提示: |
---|
This function is the same as AllTrim() since .Net has unicode strings |
示例 参见