Lexmark Document Distributor User Manual page 34

Lexmark document distributor software: user guide
Hide thumbs Also See for Document Distributor:
Table of Contents

Advertisement

Real Data Type (real)
Real data type variables and properties contain numbers with decimal points. There are many
mathematical and comparison operations that can be performed with real variables and properties.
Symbols
<, LT
>, GT
<=, LE
>=, GE
==, EQ
<>, !=, NE
+
-
*
/
String Data Type (string)
String data types contain alphanumeric text. There are many methods that let you search and
manipulate string variables and properties.
The table below uses the following string variables as an example:
string test="1@2#3*a&bc))EFG"
string check="AbCdE"
Method
test.AsAlphaNumeric()
test.AsLower()
test.AsUpper()
check.Compare("abcde")
check.CompareNoCase("abcde")
check.Concatenate("fgh")
test.Contains("EFG")
test.Find("EFG")
test.Find("Hello")
check.Length()
check.Left(3)
check.Mid(3,3)
check.Right(2)
Operators
Less Than
Greater Than
Less Than or Equal To
Greater Than or Equal To
Equal To
Not Equal To
Add
Subtract
Multiply
Divide
Results
"123abcEFG"
"1@2#3*a&bc))efg"
"1@2#3*A&BC))EFG"
FALSE
TRUE
"AbCdEfgh"
TRUE
13
0
5
"AbC"
"CdE"
"dE"
30

Advertisement

Table of Contents
loading

Table of Contents