Changes for page 3. Variables
Last modified by Outhman Moustaghfir on 2024/01/23 13:58
<
>
edited by Outhman Moustaghfir
on 2021/04/27 17:32
on 2021/04/27 17:32
edited by Outhman Moustaghfir
on 2021/04/27 18:36
on 2021/04/27 18:36
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,7 +1,11 @@ 1 +{{toc/}} 2 + 1 1 = Introduction = 2 2 3 - Variable is a container that holds a value and can be called in the iXPath Scenario. The importance of variables is to make flexibility in using some values without referring to their origins.5 + Variable is a container that holds a value and can be called in the iXPath Scenario. The importance of 4 4 7 +variables is to make flexibility in using some values without referring to their origins. 8 + 5 5 There are 2 types of variables: 6 6 7 7 * System variables ... ... @@ -58,9 +58,26 @@ 58 58 59 59 == Local variables == 60 60 61 -Local variable is a type of variable that can be newly created and used for a certain need 65 +Local variable is a type of variable that can be newly created and used for a certain need. 62 62 67 +So as to create a local variable "newVar" with a value equals to "var number 1", we should write this piece of XSL code : 63 63 69 +{{code language="XML"}} 70 +<xsl:value-of select=" ixf:SetVar('newVar', 'var Number 1')"></xsl:value-of> 64 64 72 +{{/code}} 65 65 74 +The call of this new variable in the scnario is similar to previous system variables: **${newVar}.** 75 + 76 +To get 'newVar' from XSL file : 77 + 78 +{{code language="XML"}} 79 +<xsl:value-of select="ixf:getVar('Var')"></xsl:value-of> 80 +{{/code}} 81 + 82 + 83 + 84 + 85 + 86 + 66 66