Cheatsheet/TACL: Difference between revisions
Appearance
Content deleted Content added
No edit summary |
|||
| (5 intermediate revisions by the same user not shown) | |||
| Line 144: | Line 144: | ||
| '''{{key press|,}} || Comma || |
| '''{{key press|,}} || Comma || |
||
|- |
|- |
||
| '''{{key press|(}}''' || Left |
| '''{{key press|(}}''' || Left Parenthesis || |
||
|- |
|- |
||
| '''{{key press|)}}''' || Right |
| '''{{key press|)}}''' || Right Parenthesis || |
||
|- |
|- |
||
| '''{{key press|/}}''' || Slash || |
| '''{{key press|/}}''' || Slash || |
||
|- |
|- |
||
| '''{{key press|semicolon}}'''|| Semicolon || |
| '''{{key press|semicolon}}'''|| Semicolon || |
||
|- |
|- |
||
| '''{{key press|enter}}''' || carriage |
| '''{{key press|enter}}''' || carriage return|| Physical EOL |
||
|- |
|- |
||
| '''{{key press|~;}}''' || Tilde |
| '''{{key press|~;}}''' || Tilde Semicolon|| Logical EOL |
||
|- |
|- |
||
| '''{{key press|&}} || Ampersand |
| '''{{key press|&}} || Ampersand |
||
| Line 161: | Line 161: | ||
*You cannot use the continuation character with a TACL directive (a line beginning with a question mark). |
*You cannot use the continuation character with a TACL directive (a line beginning with a question mark). |
||
|} |
|} |
||
=== Wildcards === |
|||
<references/> |
|||
{| class="wikitable" |
|||
| ⚫ | |||
|+ Wildcards |
|||
|- |
|||
! Header text !! Header text !! Header text |
|||
|- |
|||
| '''{{kbd|?}}''' || Matches any single character || Example |
|||
|- |
|||
| '''{{kbd|*}}''' || Matches any number of characters, including none || Example |
|||
|- |
|||
| '''{{kbd|{{=}}*}}''' or '''{{kbd|**}}''' || Matches any number of characters for Definenames || Example |
|||
|} |
|||
=== Operators === |
|||
{| class="wikitable" |
|||
|+ Operators |
|||
|- |
|||
! Op !! Name !! Type |
|||
|- |
|||
| '''{{kbd|NOT}}''' || NOT || Logical |
|||
|- |
|||
| '''{{kbd|AND}}''' || AND || Logical |
|||
|- |
|||
| '''{{kbd|OR}}''' || OR || Logical |
|||
|- |
|||
| '''{{kbd|*}}''' || Multiplication || Arithmetic |
|||
|- |
|||
| '''{{kbd|/}}''' || Division || Arithmetic |
|||
|- |
|||
| '''{{kbd|+}}''' || Addition || Arithmetic |
|||
|- |
|||
| '''{{kbd|-}}''' || Subtraction || Arithmetic |
|||
|- |
|||
| '''{{kbd|>}}''' || Greater then || Arithmetic Comparison |
|||
|- |
|||
| '''{{kbd|<}}''' || Less then || Arithmetic Comparison |
|||
|- |
|||
| '''{{kbd|>{{=}}}}''' || Greater then or Equal || Arithmetic Comparison |
|||
|- |
|||
| '''{{kbd|<{{=}}}}''' || Less then or Equal || Arithmetic Comparison |
|||
|- |
|||
| '''{{kbd|{{=}}}}''' || Equal to || Arithmetic Comparison |
|||
|- |
|||
| '''{{kbd|<>}}''' || Not Equal || Arithmetic Comparison |
|||
|- |
|||
| '''{{kbd|'+'}}''' || Concatenation || String |
|||
|- |
|||
| '''{{kbd|'>'}}''' or {{kbd|'!>'}} || Greater then || String Comparison |
|||
|- |
|||
| '''{{kbd|'<'}}''' or {{kbd|'!<'}} || Less then || String Comparison |
|||
|- |
|||
| '''{{kbd|'>{{=}}'}}''' or {{kbd|'!>{{=}}'}} || Greater then or Equal || String Comparison |
|||
|- |
|||
| '''{{kbd|'<{{=}}'}}''' or {{kbd|'!<{{=}}'}} || Less then or Equal || String Comparison |
|||
|- |
|||
| '''{{kbd|'{{=}}'}}''' or '''{{kbd|'!'}}''' || Equal to || String Comparison |
|||
|- |
|||
| '''{{kbd|'<>'}}''' or '''{{kbd|'!<>'}}''' || Not Equal to || String Comparison |
|||
|} |
|||
==Other Cheatsheets== |
|||
<categorytree mode="pages">Cheatsheets</categorytree> |
|||
| ⚫ | |||