EPScript/Data Types

From EPrints Documentation
Revision as of 14:20, 4 October 2006 by Moj (talk | contribs) (EPScript moved to EPScript/Data Types)
Jump to: navigation, search
EPScript
Data Types Operators
EPScript

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.

Data Objects