EPScript/Data Types
EPScript | ||||||
Data Types | Operators → | |||||
|
Contents
Data Types
Primitive Types
Strings and characters
These are contained within either double quotes ("") or single quotes (''). There is no difference between the two, but it may be easier to use one sort when inside an XML attribute. For example:
<when test="type = 'patent'"> ... </when>
Integers
Integers are defined as a string of numbers from 0-9, e.g. 300. Leading zeros do not have any effect, and decimal values are currently not supported.