aboutsummaryrefslogtreecommitdiff
path: root/files/de/glossary/regular_expression
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:15 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:41:15 -0500
commit4b1a9203c547c019fc5398082ae19a3f3d4c3efe (patch)
treed4a40e13ceeb9f85479605110a76e7a4d5f3b56b /files/de/glossary/regular_expression
parent33058f2b292b3a581333bdfb21b8f671898c5060 (diff)
downloadtranslated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.gz
translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.tar.bz2
translated-content-4b1a9203c547c019fc5398082ae19a3f3d4c3efe.zip
initial commit
Diffstat (limited to 'files/de/glossary/regular_expression')
-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>