aboutsummaryrefslogtreecommitdiff
path: root/files/de/glossary/regular_expression/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/de/glossary/regular_expression/index.html')
-rw-r--r--files/de/glossary/regular_expression/index.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/files/de/glossary/regular_expression/index.html b/files/de/glossary/regular_expression/index.html
new file mode 100644
index 0000000000..91df208d05
--- /dev/null
+++ b/files/de/glossary/regular_expression/index.html
@@ -0,0 +1,27 @@
+---
+title: Regulärer Ausdruck
+slug: Glossary/Regular_expression
+tags:
+ - Glossar
+ - Regulärer Ausdruck
+translation_of: Glossary/Regular_expression
+---
+<p><strong>Reguläre Ausdrücke </strong>(Abkürzung <em>regex</em>) sind Regeln, die das Resultat einer Textsuche bestimmen.</p>
+
+<p>Reguläre Ausdrücke sind in verschiedenen Sprachen implementiert, die bekannteste Implementation ist allerdings in der Sprache Perl, welche wiederum ein ganzes Ökosystem an Implementationen namens PCRE (englisch Perl Compatible Regular Expressions, übersetzt "Perl-kompatible Reguläre Ausdrücke") hervorgebracht hat. {{glossary("JavaScript")}} (englisch) bietet für das Web eine eigene RegEx-Implementation mithilfe des {{jsxref("RegExp")}}-Objektes.</p>
+
+<h2 id="Siehe_auch">Siehe auch</h2>
+
+<h3 id="Allgemeinwissen">Allgemeinwissen</h3>
+
+<ul>
+ <li><a href="https://de.wikipedia.org/wiki/Regul%C3%A4rer_Ausdruck">Regulärer Ausdruck</a> auf Wikipedia</li>
+ <li><a href="http://regexone.com/">Interactive tutorial</a> </li>
+ <li><a href="http://regexper.com/">Visualized Regular Expression</a> </li>
+</ul>
+
+<h3 id="Technische_Referenz">Technische Referenz</h3>
+
+<ul>
+ <li><a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions">Writing regular expressions in JavaScript</a> </li>
+</ul>