Created
November 3, 2017 11:15
Sample result of XSLT 3 transformation using accumulators to work with both streaming and non-streaming
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<root> | |
<data row="1" col="1">v11</data> | |
<data row="1" col="2">v12</data> | |
<data row="1" col="3">v13</data> | |
<data row="1" col="4">v14</data> | |
<data row="2" col="1">v21</data> | |
<data row="2" col="2">v22</data> | |
<data row="2" col="3">v23</data> | |
<data row="2" col="4">v24</data> | |
</root> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment