1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 15:00:38 +00:00
QB64-PE/internal/help/LTRIM$.txt

58 lines
1.5 KiB
Plaintext
Raw Normal View History

2017-10-10 14:55:21 +00:00
The [[LTRIM$]] function removes leading space characters from a [[STRING]] value.
{{PageSyntax}}
2017-10-10 14:55:21 +00:00
:{{Parameter|return$}} = [[LTRIM$]]({{Parameter|text$}})
{{PageDescription}}
2017-10-10 14:55:21 +00:00
* {{Parameter|text$}} is the [[STRING]] value to trim.
* If {{Parameter|text$}} contains no leading space characters, it is returned unchanged.
* Convert fixed length [[STRING]] values by using a different {{parameter|return$}} variable.
* Can be used to trim the leading space of a positive numerical value converted to a string value by [[STR$]].
2017-10-10 14:55:21 +00:00
{{PageExamples}}
''Example 1:'' Trimming a positive string number.
{{CodeStart}}
value = 12345
number$ = {{Cl|LTRIM$}}({{Cl|STR$}}(value)) 'converting number to string removes right PRINT space
2019-04-15 01:15:33 +00:00
{{Cl|PRINT}} "[" + number$ + "]" '' ''
{{CodeEnd}}
{{OutputStart}}[12345]
{{OutputEnd}}
''Example 2:'' Trimming leading spaces from text strings.
{{CodeStart}} '' ''
2019-04-15 01:15:33 +00:00
{{Cl|PRINT}} {{Cl|LTRIM$}}("some text")
{{Cl|PRINT}} {{Cl|LTRIM$}}(" some text") '' ''
{{CodeEnd}}
{{OutputStart}}some text
some text
{{OutputEnd}}
''Example 3:'' A TRIM$ function to trim spaces off of both ends of a string.
{{codeStart}} '' ''
2019-04-15 01:15:33 +00:00
text$ = " Text String "
trimmed$ = TRIM$(text$)
{{Cl|PRINT}} {{Cl|CHR$}}(26) + trimmed$ + {{Cl|CHR$}}(27) '' ''
{{Cl|FUNCTION}} TRIM$(text$)
TRIM$ = {{Cl|LTRIM$}}({{Cl|RTRIM$}}(text$))
{{Cl|END FUNCTION}} '' ''
{{CodeEnd}}
{{OutputStart}}→Text String←
{{OutputEnd}}
{{PageSeeAlso}}
* [[RTRIM$]], [[STR$]]
* [[LEFT$]], [[RIGHT$]]
* [[HEX$]], [[MID$]]
2019-04-15 01:15:33 +00:00
{{PageNavigation}}
<