From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- .../web/xpath/fonctions/substring-after/index.html | 38 ++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 files/fr/web/xpath/fonctions/substring-after/index.html (limited to 'files/fr/web/xpath/fonctions/substring-after') diff --git a/files/fr/web/xpath/fonctions/substring-after/index.html b/files/fr/web/xpath/fonctions/substring-after/index.html new file mode 100644 index 0000000000..ba4e4eb8bc --- /dev/null +++ b/files/fr/web/xpath/fonctions/substring-after/index.html @@ -0,0 +1,38 @@ +--- +title: substring-after +slug: Web/XPath/Fonctions/substring-after +tags: + - Référence_XSLT +translation_of: Web/XPath/Functions/substring-after +--- +

+{{ XsltRef() }} +


+La fonction substring-after() retourne la partie d'une chaîne donnée suivant une sous-chaîne donnée. +

+

Syntaxe

+
substring-after( bottedefoin , aiguille )
+
+

Arguments

+
bottedefoin +
La chaîne à évaluer. Un extrait de cette chaîne sera retourné. +
+
aiguille +
La sous-chaîne à rechercher. Tout le contenu se trouvant après la première occurrence de aiguille dans la chaîne bottedefoin sera retourné. +
+

Retour

+

Une chaîne. +

+

Exemples

+ +
Exemple XPath Sortie
<xsl:value-of select="substring-after('1999/04/01','/')" /> 04/01
substring-after('aa-bb','-') bb
substring-after('aa-bb','a') a-bb
substring-after('aa-bb','b') b
substring-after('aa-bb','q') (empty string)
+

Définition

+

XPath 1.0, section 4.2. +

+

Support Gecko

+

Supportée. +

Interwiki languages Links +

+
+
+{{ languages( { "en": "en/XPath/Functions/substring-after", "ja": "ja/XPath/Functions/substring-after", "pl": "pl/XPath/Funkcje/substring-after" } ) }} -- cgit v1.2.3-54-g00ecf