Map and Table Calculation

STRGE( ) function

Returns true if, in alphabetical order, String a comes after or on the same place as String b, i.e. a >= b.

Syntax

STRGE(String a, String b)

Input

String a is a string
Domain type: any Class or ID domain, or system domain String
String b is a string
Domain type: any Class or ID domain, or system domain String

Output

STRGE returns: a boolean value, i.e. True, False or undefined
Domain type: system domain Bool

Note:

When one of the input parameters is undefined, or when both input parameters are undefined, the output will also be undefined.

Tips:

Usable in

TabCalc, Simple calculators

Examples

Pocket line calculator examples:

? STRGE("Landuse","Forest")

returns True

? "Airport" >= "Industrial"

returns False

TabCalc example:

OutCol = STRGE(Landuse,Geomorphology)

 

Landuse

Geomorphology

OutCol

Institutional

Glacial slope

True

Commercial

Glacial lake

False

Residential

Old landslide

True

?

Active landslide

?

Industrial

Heavily eroded area

True

Recreational

River floodplain

false

Transport

Valley in alluvial fan

False

Airport

?

?

Water

Water

True

See also:

STRGT