Help us improve your experience.

Let us know what you think.

Do you have time for a two-minute survey?

header-navigation
keyboard_arrow_up
close
keyboard_arrow_left
Automation Scripting User Guide
Table of Contents Expand all
list Table of Contents
file_download PDF
{ "lLangCode": "en", "lName": "English", "lCountryCode": "us", "transcode": "en_US" }
English
keyboard_arrow_right

expr

date_range 13-Jan-21

Syntax

content_copy zoom_out_map
expr expression;

Description

Generate the string value of an XPath expression and add it to the result tree. The XPath expression might consist of a function call, a location path, a literal number, or a string. SLAX-specific operators are permitted. This statement cannot be used at the top-level of a script. It can only appear within a code block. By default, characters such as "<", ">", and "&" are escaped into proper XML as "&lt;", "&gt;", and "&amp;", respectively.

The expr statement is most commonly used to invoke functions that return no results, for conditional variable assignment, and to return text content from a template.

Attributes

expression

XPath expression to evaluate. The resulting string is added to the result tree.

SLAX Example

content_copy zoom_out_map
expr "Test: ";
expr substring-before(name, ".");
expr status;
expr jcs:output("Test");

XSLT Equivalent

content_copy zoom_out_map
<xsl:text>Test: </xsl:text>
<xsl:value-of select="substring-before(name, '.')"/>
<xsl:value-of select="status"/>
<xsl:value-of select="jcs:output('Test')"/>

Release Information

Statement introduced in version 1.0 of the SLAX language.

footer-navigation