Using variables in Xpath expressions - InterFormNG2 Manual

Using variables in Xpath expressions

XPath is a strong tool in itself, but you can even use variables in your XPath expressions. The way it works is by referring to a variable as:
$variable
You use the variable element to assign a value to a variable. Variables are case-sensitive, so e.g. $var is not the same as $Var.

When assigning a variable value, you need to type in a valid XPath expression. For example, you can assign a numeric value to a variable without any delimiters. Still, if you want to assign an alphanumeric value, such as a string, you need to use delimiters around the string. You can use either ' or to delimit the string.


Example of Assigning a Variable with an XPath Function

   

Here, the value of the variable filename is set as the value of the variable invoice_text (which in this case is language-dependent and contains, for example, the value "Invoice" or "Rechnung"), concatenated with the document number found in the XML file, and finally, the extension .pdf is added. This means a possible value of filename could be Invoice1001.pdf or Rechnung1001.pdf.

The example above is based on the demo XML file, which has multiple Document nodes, each with a DocumentNo. Therefore, this expression is not valid:
concat($invoice_text, /Root/Document/DocumentNo, '.pdf')
The reference /Root/Document/DocumentNo actually returns a list of four values.

To select only one value, use the following:
concat($invoice_text, /Root/Document[1]/DocumentNo, '.pdf')
With Document[1], we refer to the first occurrence of the Document node.

Handling Quotes in XML Nodes

If a node in your input XML file contains text with both single and double quotes, you need to replace these values with two other characters that will never appear in the node. For example, consider this text inside a node:
"Mary's lam had a littl' lam" (including the double quotes).
To safely insert this into a variable and later use it in XPath expressions, one way to handle this is:
var1 = translate(/Root/Node, '"', '#')
With this XPath expression, the sentence is converted into:
#Mary's lam had a littl' lam#
Now, apply a second translation:
var1 = translate($var1, "'", '£')
With this last translation, any single quote is converted into £:
#Mary£s lam had a littl£ lam#
Now you can translate it back when using var1 in an expression like this:
concat($Start, ' ', translate(translate($test, '#', '"'), "£", "'"))

If the variable Start contained This is the sentence:, then the result would be:

This is the sentence: "Mary's lam had a littl' lam"

Alternative Approach

Another simple way is to output the texts in a flow area without the need to use concat.




    • Related Articles

    • Advanced XPath Features

      For more complex scenarios, XPath provides regular expressions, variable assignments, and special functions to manipulate and evaluate XML data dynamically. This section covers these advanced features. Working with regular expressions in XPath Using ...
    • Node Existence & Conditions

      XPath allows you to verify the existence of nodes, check if they contain data, count occurrences, and ignore namespaces. This section covers essential techniques for validating and filtering XML elements. Calculating the sum of nodes Counting ...
    • XPath

      In InterFormNG2, you use the language XPath for referencing data from the XML file. There are many sources of information if you want to learn more about XPath, but you can also simply read the few examples below to get a good idea of how it can be ...
    • Variables

      In InterFormNG2 there are 4 kind of variables: User defined variables, that you define in the designer. Workflow variables. They can be defined in the workflow either by setting a single variable or multiple variables at a time. Predefined input ...
    • Excel variables

      You can use variables in the Excel designer exactly like the variable element in the normal template designer. These variables can be used in any Xpath expression. You can create a new variable or update the value of a variable in two ways: You can ...