Functions.RTrim 方法 | |
删除字符串末尾的空格。
命名空间:
XSharp.VFP
程序集:
XSharp.VFP (在 XSharp.VFP.dll 中) 版本:2.22 GA
语法 FUNCTION RTrim(
Expression AS STRING,
Flags AS LONG,
TrimChars PARAMS STRING[]
) AS STRING
public static string RTrim(
string Expression,
int Flags,
params string[] TrimChars
)
查看代码参数
- Expression
- 类型:String
Specifies an expression to remove leading spaces or 0 bytes from, respectively - Flags
- 类型:Int32
- TrimChars
- 类型:String
Specifies one or more character strings that are trimmed from the beginning of cExpression.
If cParseChar isn't included, then leading spaces or 0 bytes are removed from Expression.
返回值
类型:
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)
参见