$isupper

Tests if the letters in a character string are uppercase.

Syntax

$isupper(string)

Parameters

stringa character string or an expression that evaluates to a character string

Return Value

1-character binary string. Evaluates to 1 ($True) if string meets the validation test; otherwise, evaluates to 0 ($False).

Comments

This function tests if a particular character string is uppercase, i.e., contains no lowercase letters.

Example

$isupper("aBC")

Evaluates to $False.

$isupper(43)

Evaluates to $True.

See Also

$isalphabetic

$isalphanumeric

$isdate

$isdigit

$islower

$isnumber

$iszimname

About Character Literals

About Functional Expressions

$isalphabetic

Tests if a character string contains only letters.

Syntax

$isalphabetic(string)

Parameters

stringa character string or an expression that evaluates to a character string

Return Value

1-character binary string. Evaluates to 1 ($True) if string meets the validation test; otherwise, evaluates to 0 ($False).

Comments

This function tests if a particular character string is alphabetic.

Example

$isalphabetic("abc")

Evaluates to $True.

$isalphabetic("abc1")

Evaluates to $False.

See Also

$isalphanumeric

$isdate

$isdigit

$islower

$isnumber

$isupper

$iszimname

Character Literals

Functional Expressions

$islower

Tests if the letters in a character string are lowercase.

Syntax

$islower(string)

Parameters

stringa character string or an expression that evaluates to a character string

Return Value

1-character binary string. Evaluates to 1 ($True) if string meets the validation test; otherwise, evaluates to 0 ($False).

Comments

This function tests if a particular character string is lower case, i.e., contains no uppercase letters.

Example

$islower("Abc")

Evaluates to $False.

$islower(34)

Evaluates to $True.

See Also

$isalphabetic

$isalphanumeric

$isdate

$isdigit

$isnumber

$isupper

$iszimname

About Character Literals

About Functional Expressions

$value

Provides a default value for an expression that can be $Null.

Syntax

$value(expression1,expression2)

Parameters

expression1any expression
expression2any expression

Return Value

Same as the selected expression.

Comments

If expression1 is not $Null, $value returns the value of expression1; otherwise, it returns the value of expression2.

Example

detail line "Employee Number: " $value(EmpNum,"N/A")

Traps $Null values in a report and replaces them with “N/A”.

See Also

About Functional Expressions

CASE

Expressions and the $Null Property

IS [NOT] [$]NULL

$dayname

Determines the day name associated with a specified date value.

Syntax

$dayname(date)

Parameters

datea data, or an expression that evaluates to a date, in the form YYYYMMDD

Return Value

Character string.

Comments

This function extracts day information from standard date values. Date is often the system variable $Date.

The values returned by the $dayname function can be altered with the Language Customizer utility.

Example

$dayname (19991225)

Evaluates to “Saturday”.

$dayname ($date+7)

Evaluates to “Saturday” when $Date is 19991225.

See Also

$Date

$day

$month

$monthname

$weekday

$year

$isalphanumeric

Tests if a character string contains only letters and digits.

Syntax

$isalphanumeric(string)

Parameters

stringa character string or an expression that evaluates to a character string

Return Value

1-character binary string. Evaluates to 1 ($True) if string meets the validation test; otherwise, evaluates to 0 ($False).

Comments

This function tests if a particular character string is alphanumeric.

Example

$isalphanumeric("abc1")

Evaluates to $True.

$isalphanumeric("abc ")

Evaluates to $False.

See Also

$isalphabetic

$isdate

$isdigit

$isdigit

$isnumber

$isupper

$iszimname

$trim

Character Literals

Functional Expressions

$leftjustify

Left-justifies a character string.

Syntax

$leftjustify(string)

Parameters

stringa character string or an expression that evaluates to a character string

Return Value

Character string.

Comments

String is left-justified in a space that is $length(string) characters long. Leading spaces in string are ignored.

Example

$leftjustify(" abcde")

Evaluates to “abcde “.

$leftjustify(var1)

Evaluates to “3 ” if var1 is a LONGINT variable whose value is 3 (occupies 12 character spaces when converted to a string).

See Also

$center

$rightjustify

About Character Literals

About Functional Expressions

Conversion Between Data Types

$absolute

Returns the absolute value of a number.

Syntax

$absolute(number)

where

numbera number, or an expression that evaluates to a number

Return Value

Number, positive, with the same number of decimal places as number.

Comments

Use $absolute to ensure that a number is positive (for functions such as $sqrt, for example). $absolute returns the absolute (unsigned) value of a number. The absolute value is always treated as positive.

Example

Certain functions – for example, $sqrt – accept only positive arguments. You can use $absolute to ensure that all arguments to these functions are positive.

$sqrt($absolute(-0.98))

evaluates as if it were:

$sqrt(0.98)

See Also

About Functional Expressions

$tolower

Converts alphabetic characters to lower case.

Syntax

$tolower(source)

Parameters

sourceany value, or an expression that yields any value

Return Value

Character string.

Comments

Returns a character string in which all letters are lower case. If source is not of a character data type, it is converted to a character data type before the function is applied.

Example

$tolower("the QUICK BROWN fox is 30 years oLD")

Evaluates to “the quick brown fox is 30 years old”.

output "Do you want output to go to the printer? (y/n)"
input <1>
if $tolower("#<1>") = "y"   % makes user response case insensitive
set output printer
endif

Ensures that the user response is case-insensitive.

See Also

$toupper

About Character Literals

About Functional Expressions

pt_BRPortuguese