aboutsummaryrefslogtreecommitdiff
path: root/files/pl/conflicting/web/javascript/reference/global_objects/regexp/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/pl/conflicting/web/javascript/reference/global_objects/regexp/index.html')
-rw-r--r--files/pl/conflicting/web/javascript/reference/global_objects/regexp/index.html55
1 files changed, 0 insertions, 55 deletions
diff --git a/files/pl/conflicting/web/javascript/reference/global_objects/regexp/index.html b/files/pl/conflicting/web/javascript/reference/global_objects/regexp/index.html
deleted file mode 100644
index 9f89b08978..0000000000
--- a/files/pl/conflicting/web/javascript/reference/global_objects/regexp/index.html
+++ /dev/null
@@ -1,55 +0,0 @@
----
-title: RegExp.prototype
-slug: conflicting/Web/JavaScript/Reference/Global_Objects/RegExp
-tags:
- - JavaScript
- - Property
- - Prototype
- - RegExp
-translation_of: Web/JavaScript/Reference/Global_Objects/RegExp
-translation_of_original: Web/JavaScript/Reference/Global_Objects/RegExp/prototype
-original_slug: Web/JavaScript/Referencje/Obiekty/RegExp/prototype
----
-<p>{{JSRef}}</p>
-
-<h2 id="Podsumowanie" name="Podsumowanie">Podsumowanie</h2>
-
-<p>Reprezentuje prototyp obiektów danej klasy. Pozwala na dodawanie własności i metod do wszystkich instancji tej klasy.</p>
-
-<h2 id="W.C5.82asno.C5.9Bci" name="W.C5.82asno.C5.9Bci">Własności</h2>
-
-<p>Zauważ, że niektóre własności obiektu <code>RegExp</code> mają dwie nazwy: długą i krótką (Perl<em>ową</em>). Obydwie nazwy zawsze odwołują się do tej samej wartości. Perl jest językiem programowania, z którego uformowały się wyrażenia regularne JavaScriptu.</p>
-
-<dl>
- <dt><code>RegExp.prototype.constructor</code></dt>
- <dd>Określa funkcję, która tworzy prototyp obiektu.</dd>
- <dt>{{jsxref("RegExp.prototype.flags")}} {{experimental_inline}}</dt>
- <dd>A string that contains the flags of the <code>RegExp</code> object.</dd>
- <dt>{{jsxref("RegExp.prototype.global")}}</dt>
- <dd>Czy przeszukiwać cały ciąg w poszukiwaniu wszystkich możliwych dopasowań czy tylko w poszukiwaniu pierwszego.</dd>
- <dt>{{jsxref("RegExp.prototype.ignoreCase")}}</dt>
- <dd>Czy ignorować wielkość liter podczas wyszukiwania.</dd>
- <dt>{{jsxref("RegExp.prototype.multiline")}}</dt>
- <dd>Czy w ciągach z wieloma liniami, szukać w wielu liniach.</dd>
- <dt>{{jsxref("RegExp.prototype.source")}}</dt>
- <dd>Tekst wzoru.</dd>
- <dt>{{jsxref("RegExp.prototype.sticky")}} {{experimental_inline}}</dt>
- <dd>Whether or not the search is sticky.</dd>
- <dt>{{jsxref("RegExp.prototype.unicode")}} {{experimental_inline}}</dt>
- <dd>Whether or not Unicode features are enabled.</dd>
-</dl>
-
-<h2 id="Metody" name="Metody">Metody</h2>
-
-<dl>
- <dt>{{jsxref("RegExp.prototype.compile()")}} {{deprecated_inline}}</dt>
- <dd>(Re-)compiles a regular expression during execution of a script.</dd>
- <dt>{{jsxref("RegExp.prototype.exec()")}}</dt>
- <dd>Uruchamia wyszukiwanie dopasowania w ciągu podanym poprzez parametr tej metody.</dd>
- <dt>{{jsxref("RegExp.prototype.test()")}}</dt>
- <dd>Testuje dopasowanie w ciągu podanym poprzez parametr tej metody.</dd>
- <dt>{{jsxref("RegExp.prototype.toSource()")}} {{non-standard_inline}}</dt>
- <dd>Zwraca literał obiektu reprezentujący podany obiekt; możesz użyć tej wartości do utworzenia nowego obiektu. Przesłania metodę <a href="/pl/Dokumentacja_j%C4%99zyka_JavaScript_1.5/Obiekty/Object/toSource" title="pl/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/toSource">Object.toSource</a>.</dd>
- <dt>{{jsxref("RegExp.prototype.toString()")}}</dt>
- <dd>Zwraca ciąg znaków reprezentujący podany obiekt. Przesłania metodę <a href="/pl/Dokumentacja_j%C4%99zyka_JavaScript_1.5/Obiekty/Object/toString" title="pl/Dokumentacja_języka_JavaScript_1.5/Obiekty/Object/toString">Object.toString</a>.</dd>
-</dl>