|
|
| (8 intermediate revisions by the same user not shown) |
| Line 1: |
Line 1: |
| ==Navigation== | | ==Pages== |
| <section begin=navbar />{{#lst:Gambas|navbar}}: [[Gambas reference|reference]]<section end=navbar />{{seedling}}
| | * {{l/same|controls}} - built-in control components |
| | | * {{l/same|functions}} - built-in functions |
| ==Functions==
| | * {{l/same|libraries}} - available code libraries |
| * [[Format (Gambas)|Format]]
| | * {{l/same|syntax}} - language syntax |
| * [[IsDigit]] (2.0; see [http://gambasdoc.org/help/lang/isdigit])
| | ==Links== |
| ==Function Groups==
| | * [http://gambaswiki.org/wiki/cat Language Overviews]: keywords and built-in functions, grouped by topic |
| * [http://gambasdoc.org/help/cat/arith arithmetic functions]
| |
| * [http://gambasdoc.org/help/cat/bit bit manipulation] | |
| * [http://gambasdoc.org/help/cat/char character test functions]
| |
| ==Language Elements==
| |
| ===operators===
| |
| * <s>[http://gambasdoc.org/help/cat/arithop arithmetic operations]</s>: page missing or moved
| |
| * [http://gambasdoc.org/help/cat/assignop assignment operators]
| |
| ** '''Variable = Expression''': Direct assignment
| |
| ** '''Variable += Expression''': Assignment with addition (not available in Gambas 1.0.18)
| |
| ** '''Variable -= Expression''': Assignment with subtraction (not available in Gambas 1.0.18)
| |
| ** '''Variable *= Expression''': Assignment with multiplication (the rest of these are probably also not available in v1.0.18) | |
| ** '''Variable /= Expression''': Assignment with division
| |
| ** '''Variable \= Expression''': Assignment with integer division (V = V \ E)
| |
| ** '''Variable &= Expression''': Assignment with string concatenation (V = V & E)
| |
| ** '''Variable &/= Expression''': Assignment with path concatenation (V = V &/ E)
| |
| * [http://gambasdoc.org/help/cat/logicop logical operators] | |
| * [http://gambasdoc.org/help/cat/stringop string operators]
| |
| ** '''String & String''': concatenation of two strings
| |
| ** '''String &/ String''': concatenation of two strings containing file path parts; add a path separator if neither is empty
| |
| ** '''String = String''': strings are equal?
| |
| ** '''String == String''': strings are equal? (case-insensitive)
| |
| ** '''String LIKE String''': string matches a pattern?
| |
| ** '''String <> String''': strings are different?
| |
| ** '''String1 < String2''': String1 is "strictly lower" than String2?
| |
| ** '''String1 > String2''': String1 is "strictly greater" than String2?
| |
| ** '''String1 <= String2''': String1 is "lower than" or equal to String2?
| |
| ** '''String1 >= String2''': String1 is "greater than" or equal to String2?
| |
| | |
| ==Libraries==
| |
| * [[gb.db]] handles [[database]] operations
| |
| * [[gb.qt]] handles forms
| |