RTrim Function | |
Remove trailing spaces from a string.
Namespace:
XSharp.Core
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax FUNCTION RTrim(
cString AS STRING
) AS STRING
public static string RTrim(
string cString
)
Request Example
View SourceParameters
- cString
- Type: String
The string to trim.
Return Value
Type:
StringcString with the trailing spaces removed.
If
cString is a NULL_STRING or all spaces, RTrim() returns a NULL_STRING.
Remarks
RTrim() is the same as Trim(). See Trim() for details.
Examples
This is a function in which RTrim() formats city, state, and zip code fields for labels or form letters:
1FUNCTION CityState(cCity, cState, cZip)
2 RETURN RTrim(cCity) + ", " ;
3 + RTrim(cState) + " " + cZip
To complete the example the function, CityState(), displays a record from CUSTOMER.DBF:
1USE customer INDEX custname NEW
2SEEK "Kate"
3? CityState(City, State, ZipCode)
See Also