Functions.RTrim 方法 | |
删除字符串末尾的空格。
命名空间:
XSharp.Core
程序集:
XSharp.Core (在 XSharp.Core.dll 中) 版本:2.22 GA
语法 FUNCTION RTrim(
cString AS STRING
) AS STRING
public static string RTrim(
string cString
)
查看代码参数
- cString
- 类型:String
要修剪的字符串。
返回值
类型:
StringcString 删除后缀空格的结果。
如果
cString 是 NULL_STRING 或全为空格,RTrim() 返回 NULL_STRING。
备注
RTrim() 与 Trim() 相同。有关详细信息,请参阅 Trim()。
示例
这是一个使用 RTrim() 格式化城市、州和邮政编码字段以用于标签或表单信的函数:
1FUNCTION CityState(cCity, cState, cZip)
2 RETURN RTrim(cCity) + ", " ;
3 + RTrim(cState) + " " + cZip
为了完成示例,函数 CityState() 从 CUSTOMER.DBF 显示记录:
1USE customer INDEX custname NEW
2SEEK "Kate"
3? CityState(City, State, ZipCode)
参见