RTRIM$: Difference between revisions

From QB64 Phoenix Edition Wiki
Jump to navigation Jump to search
(Created page with "The {{KW|RTRIM$}} function removes trailing space characters from a {{KW|STRING}} value. {{PageSyntax}} :{{parameter|return$}} = {{KW|RTRIM$}}({{Parameter|value$}}) {{PageDescription}} * {{Parameter|value$}} is the {{KW|STRING}} value to trim. * If {{Parameter|value$}} contains no trailing space characters, {{Parameter|value$}} is returned unchanged. * Convert fixed length {{KW|STRING}} values by using a different {{parameter|return$}} variable. {{PageExamples}} T...")
 
No edit summary
Line 17: Line 17:
{{CodeStart}}
{{CodeStart}}
name$ = {{Cl|RTRIM$}}(contact.name) ' trims spaces from end of fixed length {{Cl|TYPE}} value.
name$ = {{Cl|RTRIM$}}(contact.name) ' trims spaces from end of fixed length {{Cl|TYPE}} value.
{{CodeEnd}}  
{{CodeEnd}}


Trimming text string ends:
Trimming text string ends:

Revision as of 02:32, 23 January 2023

The Template:KW function removes trailing space characters from a Template:KW value.


Syntax

return$ = Template:KW(value$)


Description

  • value$ is the Template:KW value to trim.
  • If value$ contains no trailing space characters, value$ is returned unchanged.
  • Convert fixed length Template:KW values by using a different return$ variable.


Examples

Trimming a fixed length string value for use by another string variable:

name$ = RTRIM$(contact.name) ' trims spaces from end of fixed length TYPE value.

Trimming text string ends:

PRINT RTRIM$("some text") + "."
PRINT RTRIM$("some text   ") + "."
PRINT RTRIM$("Tommy    ")
some text.
some text.
Tommy


See also



Navigation:
Main Page with Articles and Tutorials
Keyword Reference - Alphabetical
Keyword Reference - By usage
Report a broken link