fisdir
fisdir( path )
Tests if the file named in path is a directory.
Returns 1 if the path is a directory else 0.
- path = the fully qualified path to the directory
|
isalnum
isalnum( string )
Test if all characters are either alphabetic or digits
Returns 1 if true, 0 if false
- string = the characters tested
|
isalpha
isalpha( string )
Test if all characters are alphabetic.
Returns 1 if true, 0 if false
- string = the characters tested
|
isascii
isascii( string )
Test if all characters are ASCII characters (those with decimal value between 0 and 127).
Returns 1 if true, 0 if false
- string = the characters tested
|
iscntrl
iscntrl( string )
Test if all characters are control characters (those with decimal value between 0 and 31, or 127).
Returns 1 if true, 0 if false
- string = the characters tested
|
isdigit
isdigit( string )
Test if all characters are digits in the range 0-9.
Returns 1 if true, 0 if false
- string = the characters tested
|
isgraph
isgraph( string )
Test if all characters are graphic (see isprint) characters (those with decimal value between 33 and 127).
Returns 1 if true, 0 if false
- string = the characters tested
|
islower
islower( string )
Test if all characters are lowercase letters,
Returns 1 if true, 0 if false
- string = the characters tested
|
isprint
isprint( string )
Test if all characters are printable (same as graphic characters, with the addition of the space character).
Returns 1 if true, 0 if false
- string = the characters tested
|
ispunct
ispunct( string )
Test if all characters are whitespace (space, tab, vertical tab, newline, form feed) characters.
Returns 1 if true, 0 if false
- string = the characters tested
|
isspace
isspace( string )
Test if all characters are whitespace (space, tab, vertical tab, newline, form feed) characters.
Returns 1 if true, 0 if false
- string = the characters tested
|
isupper
isupper( string )
Test if all characters are uppercase letters.
Returns 1 if true, 0 if false
- string = the characters tested
|
isxdigit
isxdigit( string )
Test if all characters are hexadecimal digits (a-f, A-F, 0-9).
Returns 1 if true, 0 if false
- string = the characters tested
|
sisdir
sisdir( path )
Tests if the file named in path is a directory.
Returns 1 if the path is a directory else 0.
- path = the fully qualified path to the directory
|
miva_variable_value
miva_variable_value( string )
Returns the value of a variable where expression is the literal name of the variable.
|
min
min( a, b )
Compares and returns the lower of two values.
Returns the smaller value of a or b
- a = string or numeric value, b = string or numeric value
|
max
max( a, b )
Compares and returns the higher of two values.
Returns the higher value of a or b
- a = string or numeric value, b = string or numeric value
|
miva_variable_type
miva_variable_type( variable )
Return a string representation of the variable type e.g. "INTEGER", "DOUBLE", "ARRAY", etc...
Returns the variable type
- variable = a variable name
|