mirror of
https://github.com/alexandrev/xslt-lab.git
synced 2026-09-17 18:53:15 +00:00
53e90ef86e
Full coverage of XSLT 1.0, 2.0 and 3.0 elements and XPath functions: - 59 XSLT elements (xsl:stylesheet → xsl:use-accumulators) - 170 XPath functions (1.0 node/string/numeric/boolean, 2.0 sequence/ date/QName/string, 3.0 HOF/map/array/JSON/streaming) Each page: description, parameters table, return value, 2 runnable Saxon examples with input XML + stylesheet + output, notes, cross-links. xsltCompletions.js: all 229 entries now have blogSlug for hover links. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
3.3 KiB
3.3 KiB
title, description, date, version, versionLabel, category, syntax, tags
| title | description | date | version | versionLabel | category | syntax | tags | ||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| array:put() | Returns a new array with the member at a given position replaced by a new value. | 2026-04-18T00:00:00Z | 3.0 | XSLT 3.0 | array function | array:put(array, position, value) |
|
Description
array:put() produces a new array identical to the input except that the member at the specified 1-based position is replaced with the new value. Arrays are immutable in XDM; the original array is not modified. Out-of-range positions raise err:FOAY0001.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
array |
array(*) | Yes | The source array. |
position |
xs:integer | Yes | The 1-based position of the member to replace. |
value |
item()* | Yes | The new value for that position. |
Return value
array(*) — a new array with the member at position replaced by value.
Examples
Replacing a member in an array
Stylesheet:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="3.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:array="http://www.w3.org/2005/xpath-functions/array">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="/">
<xsl:variable name="original" select="['a', 'b', 'c', 'd']"/>
<xsl:variable name="updated" select="array:put($original, 2, 'B')"/>
<result>
<xsl:for-each select="1 to array:size($updated)">
<item><xsl:value-of select="array:get($updated, .)"/></item>
</xsl:for-each>
</result>
</xsl:template>
</xsl:stylesheet>
Output:
<result>
<item>a</item>
<item>B</item>
<item>c</item>
<item>d</item>
</result>
Updating JSON-like array data
Input XML:
<?xml version="1.0" encoding="UTF-8"?>
<patch position="2" value="updated-value"/>
Stylesheet:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="3.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:array="http://www.w3.org/2005/xpath-functions/array">
<xsl:output method="xml" indent="yes"/>
<xsl:template match="/patch">
<xsl:variable name="data" select="['original-1', 'original-2', 'original-3']"/>
<xsl:variable name="pos" select="xs:integer(@position)"/>
<xsl:variable name="patched" select="array:put($data, $pos, string(@value))"/>
<patched>
<xsl:for-each select="1 to array:size($patched)">
<item pos="{.}"><xsl:value-of select="array:get($patched, .)"/></item>
</xsl:for-each>
</patched>
</xsl:template>
</xsl:stylesheet>
Output:
<patched>
<item pos="1">original-1</item>
<item pos="2">updated-value</item>
<item pos="3">original-3</item>
</patched>
Notes
- Array positions are 1-based. Position
0or greater thanarray:size()raiseserr:FOAY0001. - The new value can be any XDM value, including a sequence (which becomes a single multi-item member).
- Arrays are immutable; the result is always a new array.