Changes for page 3. Variables
Last modified by Outhman Moustaghfir on 2024/01/23 13:58
<
>
edited by Outhman Moustaghfir
on 2021/04/27 18:40
on 2021/04/27 18:40
edited by Outhman Moustaghfir
on 2021/04/27 17:32
on 2021/04/27 17:32
Change comment:
There is no comment for this version
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,11 +3,7 @@ 1 -{{toc/}} 2 - 3 3 = Introduction = 4 4 5 - Variable is a container that holds a value and can be called in the iXPath Scenario. The importance of 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. 6 6 7 -variables is to make flexibility in using some values without referring to their origins. 8 - 9 9 There are 2 types of variables: 10 10 11 11 * System variables ... ... @@ -62,26 +62,9 @@ 62 62 63 63 == Local variables == 64 64 65 -Local variable is a type of variable that can be newly created and used for a certain need .61 +Local variable is a type of variable that can be newly created and used for a certain need 66 66 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 : 68 68 69 -{{code language="XML"}} 70 -<xsl:value-of select=" ixf:SetVar('newVar', 'var Number 1')"></xsl:value-of> 71 71 72 -{{/code}} 73 73 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 - 87 87