RTrim$() function - MapBasic - 2023

MapInfo MapBasic Reference

Product type
Software
Portfolio
Locate
Product family
MapInfo
Product
MapInfo > MapBasic
Version
2023
ft:locale
en-US
Product name
MapBasic
ft:title
MapInfo MapBasic Reference
First publish date
1985
ft:lastEdition
2023-09-12
ft:lastPublication
2023-09-12T16:32:32.686000

Purpose

Trims space characters from the end of a string, and returns the results. You can call this function from the MapBasic window in MapInfo Pro.

Syntax

RTrim$( string_expr ) 

string_expr is a string expression.

Return Value

String

Description

The RTrim$() function removes any spaces from the end of the string_expr string, and returns the resultant string.

Example

Dim s_name As String
s_name = RTrim$("Mary Smith ")

s_name now contains the string "Mary Smith" (no spaces at the end).

See Also:

LTrim$() function