1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-26 15:35:53 +00:00
QB64-PE/internal/help/CASE_IS.txt
SMcNeill 6e01fc8dce Altered string compare routines (<,<=,>,>=) so they don't give false results with CHR$(0).
Added new _STRCMP and _STRICMP commands for quick string comparisons.
Cleaned up QB64 to finish removing the QUI (quick user insert) code and folders.
Altered UCASE and LCASE routines to be faster in some situations for us.
2014-09-22 08:19:03 -04:00

22 lines
560 B
Plaintext

[[CASE IS]] can be used in a [[SELECT CASE]] routine where you need to use relational conditional expressions.
{{PageSyntax}}
: [[CASE IS]] '''{=|&lt;|&gt;|&lt;=|&gt;=|&lt;&gt;|[[NOT]]} {{Parameter|expression}}'''
{{PageDescription}}
* [[CASE IS]] &gt; 100 uses the greater than expression.
* [[CASE IS]] &lt;= 100 uses the less than or equal to expression.
* [[CASE IS]] &lt;&gt; 100 uses the not equal to expression(same as {{KW|NOT}} 100).
{{Template:RelationalTable}}
{{PageSeeAlso}}
* [[CASE]], [[CASE ELSE]]
* [[SELECT CASE]]
{{PageNavigation}}