aboutsummaryrefslogtreecommitdiff
path: root/files/pl/web/xpath/functions/substring-after/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pl/web/xpath/functions/substring-after/index.html')
-rw-r--r--files/pl/web/xpath/functions/substring-after/index.html40
1 files changed, 40 insertions, 0 deletions
diff --git a/files/pl/web/xpath/functions/substring-after/index.html b/files/pl/web/xpath/functions/substring-after/index.html
new file mode 100644
index 0000000000..faf0b7ae6a
--- /dev/null
+++ b/files/pl/web/xpath/functions/substring-after/index.html
@@ -0,0 +1,40 @@
+---
+title: substring-after
+slug: Web/XPath/Funkcje/substring-after
+tags:
+ - Dokumentacje
+ - Wszystkie_kategorie
+ - XSLT
+ - 'XSLT:Dokumentacje'
+translation_of: Web/XPath/Functions/substring-after
+---
+<p>
+{{ XsltRef() }}
+</p><p><br>
+Funkcja <code>substring-after</code> zwraca łańcuch znaków będący resztą podanego łańcucha znaków po danym podciągu.
+</p>
+<h3 id="Sk.C5.82adnia" name="Sk.C5.82adnia"> Składnia </h3>
+<pre class="eval">substring-after( <i>stóg siana</i> , <i>igła</i> )
+</pre>
+<h3 id="Argumenty" name="Argumenty"> Argumenty </h3>
+<dl><dt><i><code>stóg siana</code></i>
+</dt><dd>Oceniany łańcuch znaków. Zostanie zwrócona część tego łańcucha.
+</dd></dl>
+<dl><dt><i><code>igła</code></i>
+</dt><dd>Szukany podciąg. Zostanie zwrócone wszystko po pierwszym wystąpieniu <i><code>igła</code></i> w łańcuchu <i><code>stóg siana</code></i>.
+</dd></dl>
+<h3 id="Zwraca" name="Zwraca"> Zwraca </h3>
+<p>Łańcuch znaków.
+</p>
+<h3 id="Przyk.C5.82ady" name="Przyk.C5.82ady"> Przykłady </h3>
+<table class="standard-table"> <tbody><tr> <th>Przykład XPath</th> <th>Wyświetli</th> </tr> <tr> <td><code>substring-after('aa-bb','-')</code></td> <td><code>bb</code></td> </tr> <tr> <td><code>substring-after('aa-bb','a')</code></td> <td><code>a-bb</code></td> </tr> <tr> <td><code>substring-after('aa-bb','b')</code></td> <td><code>b</code></td> </tr> <tr> <td><code>substring-after('aa-bb','q')</code></td> <td>(pusty łańcuch znaków)</td> </tr>
+</tbody></table>
+<h3 id="Definicja" name="Definicja"> Definicja </h3>
+<p><a href="http://www.w3.org/TR/xpath#function-substring-after" class="external">XPath 1.0 4.2</a>
+</p>
+<h3 id="Gecko" name="Gecko"> Gecko </h3>
+<p>Obsługuje.
+</p>
+<div class="noinclude">
+</div>
+{{ languages( { "en": "en/XPath/Functions/substring-after", "fr": "fr/XPath/Fonctions/substring-after", "ja": "ja/XPath/Functions/substring-after" } ) }}