1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 10:30:36 +00:00
QB64-PE/internal/help/STRING.txt
SteveMcNeill 33adc04fc4 Add temp folder to repo. It's necessary as well!
Just more initial setting on... nothing much to see here.
2022-04-28 13:39:56 -04:00

112 lines
5.4 KiB
Plaintext

'''STRING''' variables or literal values are one byte per character length text or [[ASCII]] characters.
{{PageSyntax}}
:: DIM variable AS STRING [* byte_length]
* ''Byte length'' is optional in [[DIM]] statements, but is required in [[TYPE]] definitions as a literal or [[CONST|constant]] [[INTEGER]] value.
* Literal strings are defined by quotation marks on each end. The quotes will not [[PRINT]] to the screen.
* Quotation marks cannot be placed inside of literal string values! Use [[CHR$]](34) to display " quotes.
* Semicolons and commas outside of the string can be used to combine strings in a [[PRINT]] statement only.
* [[LEN]] determines the number of bytes and number of string characters that are in a particular string.
* Literal string ends are designated by quotation marks such as: "text". Use [[CHR$]](34) to add quotes to string values.
* Variable suffix type definition is $ such as: text$.
* STRING values are compared according to the [[ASCII]] code values from left to right until one string code value exceeds the other.
* '''NOTE: Many Qbasic keyword variable names CAN be used with a [[STRING]] suffix($) ONLY! You CANNOT use them without the suffix, use a numerical suffix or use [[DIM]], [[REDIM]], [[_DEFINE]], [[BYVAL]] or [[TYPE]] variable [[AS]] statements!'''
:::::'''Creating a fixed length STRING variable in Qbasic:'''
:* Variable$ = " " ' 1 space creates a one [[_BYTE|byte]] string length in a procedure(not fixed)
:* Variable$ = SPACE$(n%) ' defined as a n% length string in a procedure(not fixed)
:* [[DIM]] variable AS STRING * n% ' fixed string length cannot be changed later
:* Variable AS STRING * n% ' fixed string length in a [[SUB]] parameter or [[TYPE]] definition.
:* [[CONST]] variables can also be used after the constant value is defined.
:::::'''QB64 fixed length string type suffixes'''
* A number after the string variable name $ suffix denotes the fixed string length: '''X$2''' denotes a 2 byte string.
::::::'''String [[Concatenation]] (addition)'''
::::''Must be used when defining a string variable's literal value!''
* Concatenation uses the + addition symbol to add literal or variable parts to a string variable value.
* Quotation marks cannot be added. Use [[CHR$]](34) as quotes are used to define the ends of strings.
* Numerical values added must be converted to strings in string variable definitions. See the [[STR$]] function.
* Concatenation can be used in PRINT statements along with semicolons and commas used by {{KW|PRINT}} ONLY.
* Semicolons or commas outside of quotes cannot be used to make a string variable's literal string value!
''Example 1:'' Using a string type suffix with a fixed length byte size in QB64 only. The number designates the fixed string length.
{{CodeStart}} '' ''
var$5 = "1234567"
PRINT var$5 '' ''
{{CodeEnd}}
{{OutputStart}}12345{{OutputEnd}}
:''Note:'' The suffix must keep the same byte length or it is considered a different string variable with a different value!
''Example 2:'' Creating a string variable value by adding variable and literal string values. This procedure is called string [[concatenation]].
{{CodeStart}} '' ''
age% = 10
a$ = "I am " + {{Cl|CHR$}}(34) + {{Cl|LTRIM$}}({{Cl|STR$}}(age%)) + {{Cl|CHR$}}(34) + " years old."
b$ = "How old are you?"
question$ = a$ + {{Cl|SPACE$}}(1) + b$
{{Cl|PRINT}} question$
{{CodeEnd}}
{{OutputStart}}
I am "10" years old. How old are you? '' ''
{{OutputEnd}}
:''Note:'' Since quotation marks are used to denote the ends of literal strings, [[CHR$]](34) must be used to place quotes inside them.
''Example 3:'' How QB64 string type suffixes can fix the length by adding a number of bytes after it.
{{CodeStart}} '' ''
strings$5 = "Hello world"
PRINT strings$5 '' ''
{{CodeEnd}}{{OutputStart}}Hello{{OutputEnd}}
''Example 4:'' STRING values can be compared by the [[ASC]] code value according to [[ASCII]].
{{CodeStart}} '' ''
{{Cl|PRINT}} "Enter a letter, number or punctuation mark from the keyboard: ";
valu$ = {{Cl|INPUT$}}(1)
{{Cl|PRINT}} value$
value1$ = "A"
value2$ = "m"
value3$ = "z"
{{Cl|SELECT CASE}} value$
{{Cl|CASE}} value1$: {{Cl|PRINT}} "A only"
{{Cl|CASE}} value1$ {{Cl|TO}} value2$: {{Cl|PRINT}} "B to m" 'A is already evaluated
{{Cl|CASE}} value1$, value2$, value3$: {{Cl|PRINT}} "z only" 'A and m are already evaluated
{{Cl|CASE IS}} > value2$: {{Cl|PRINT}} "greater than m but not z" 'z is already evaluated
{{Cl|CASE ELSE}}: {{Cl|PRINT}} "other value" 'key entry below A including all numbers
{{Cl|END SELECT}} '' ''
{{CodeEnd}}
: ''Notes:'' [[STRING]] values using multiple characters will be compared by the [[ASCII]] code values sequentially from left to right. Once the equivalent code value of one string is larger than the other the evaluation stops. This allows string values to be compared and sorted alphabetically using [[Greater Than|>]] or [[Less Than|<]] and to [[SWAP]] values in [[arrays]] irregardless of the string lengths.
''See also:''
* [[DIM]], [[DEFSTR]]
* [[CHR$]], [[ASC]]
* [[LEFT$]], [[RIGHT$]], [[MID$]]
* [[LTRIM$]], [[RTRIM$]]
* [[LCASE$]], [[UCASE$]]
* [[STR$]] {{text|(decimal to string value)}}
* [[HEX$]] {{text|(decimal to [[&H|hexadecimal]] string value)}}
* [[MKI$]], [[MKL$]], [[MKS$]], [[MKD$]], [[_MK$]] {{text|(numerical to [[ASCII]] string)}}
* [[CVI]], [[CVL]], [[CVS]], [[CVD]], [[_CV]] {{text|([[ASCII]] string to numerical value)}}
* [[LEN]], [[VAL]] {{text|(function converts string to numerical value)}}
* [[ASCII]], [[DRAW]]
* [[PRINT]], [[PRINT USING]], [[WRITE]]
{{PageNavigation}}
<