diff options
author | julieng <julien.gattelier@gmail.com> | 2021-11-11 08:10:45 +0100 |
---|---|---|
committer | SphinxKnight <SphinxKnight@users.noreply.github.com> | 2021-11-11 09:10:10 +0100 |
commit | 62f11f2bfa1aac3f0da97eb911c98c40552cde72 (patch) | |
tree | fa879ab39d047b82fd7f44e486eb76b0a4521c43 /files/fr/web/exslt/str/split/index.md | |
parent | 415ac8c3566dd34fe1efafa1c9b815016041705d (diff) | |
download | translated-content-62f11f2bfa1aac3f0da97eb911c98c40552cde72.tar.gz translated-content-62f11f2bfa1aac3f0da97eb911c98c40552cde72.tar.bz2 translated-content-62f11f2bfa1aac3f0da97eb911c98c40552cde72.zip |
move *.html to *.md
Diffstat (limited to 'files/fr/web/exslt/str/split/index.md')
-rw-r--r-- | files/fr/web/exslt/str/split/index.md | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/files/fr/web/exslt/str/split/index.md b/files/fr/web/exslt/str/split/index.md new file mode 100644 index 0000000000..b9fc963ad3 --- /dev/null +++ b/files/fr/web/exslt/str/split/index.md @@ -0,0 +1,53 @@ +--- +title: split +slug: Web/EXSLT/str/split +tags: + - EXSLT + - XSLT +translation_of: Web/EXSLT/str/split +--- +<p>{{ XsltRef() }}</p> + +<p><br> + <code>str:split()</code> divise une chaîne en utilisation un motif pour déterminer où doivent être fait les séparations, en retournant un ensemble de nœuds contenant les chaînes résultantes.</p> + +<h3 id="Syntaxe">Syntaxe</h3> + +<pre class="eval">str:split(<em>chaîne</em>,<em>motif</em>) +</pre> + +<h3 id="Arguments">Arguments</h3> + +<dl> + <dt><code>chaîne</code></dt> + <dd>La chaîne à diviser.</dd> + <dt><code>motif</code></dt> + <dd>Le motif indiquant les endroits de division de la chaîne.</dd> +</dl> + +<h3 id="Retourne">Retourne</h3> + +<p>Un ensemble de nœuds d'éléments <code>token</code>, contenant chacun un <code>token</code> provenant de <code>chaîne</code>.</p> + +<p>Par exemple :</p> + +<pre class="eval">str:split('livre, téléphone, ordinateur, chaise', ', ') +</pre> + +<p>Retourne l'ensemble de nœuds suivant :</p> + +<pre class="eval"><token>livre</token> +<token>téléphone</token> +<token>ordinateur</token> +<token>chaise</token> +</pre> + +<h3 id="D.C3.A9finition">Définition</h3> + +<ul> + <li><a class="external" href="http://www.exslt.org/regexp/functions/split/index.html">EXSLT - STR:SPLIT (en)</a></li> +</ul> + +<h3 id="Support_par_Gecko">Support par Gecko</h3> + +<p>Supporté par Gecko 1.9 et ultérieur.</p> |