From 9413589e8a8f59b8e4b5df367e1cf37ac45f23b8 Mon Sep 17 00:00:00 2001 From: Francisco <48428470+Fransjemo@users.noreply.github.com> Date: Thu, 12 Mar 2020 01:35:27 +0100 Subject: [PATCH 1/3] WIP Dutch translation of README-nl.md --- README-nl.md | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 README-nl.md diff --git a/README-nl.md b/README-nl.md new file mode 100644 index 00000000..c4ebee7e --- /dev/null +++ b/README-nl.md @@ -0,0 +1,36 @@ +

+
+ + Learn Regex + +

+

+ + + + + + +

+

+ +## Translations: + +* [English](README.md) +* [Español](translations/README-es.md) +* [Français](translations/README-fr.md) +* [Português do Brasil](translations/README-pt_BR.md) +* [中文版](translations/README-cn.md) +* [日本語](translations/README-ja.md) +* [한국어](translations/README-ko.md) +* [Turkish](translations/README-tr.md) +* [Greek](translations/README-gr.md) +* [Magyar](translations/README-hu.md) +* [Polish](translations/README-pl.md) +* [Русский](translations/README-ru.md) +* [Tiếng Việt](translations/README-vn.md) +* [فارسی](translations/README-fa.md) + +## What are Regular Expressions? + + From fe96a03734653609d2a94d198adfa3a69d6a6119 Mon Sep 17 00:00:00 2001 From: Francisco <48428470+Fransjemo@users.noreply.github.com> Date: Thu, 12 Mar 2020 01:41:55 +0100 Subject: [PATCH 2/3] Delete README-nl.md --- README-nl.md | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 README-nl.md diff --git a/README-nl.md b/README-nl.md deleted file mode 100644 index c4ebee7e..00000000 --- a/README-nl.md +++ /dev/null @@ -1,36 +0,0 @@ -

-
- - Learn Regex - -

-

- - - - - - -

-

- -## Translations: - -* [English](README.md) -* [Español](translations/README-es.md) -* [Français](translations/README-fr.md) -* [Português do Brasil](translations/README-pt_BR.md) -* [中文版](translations/README-cn.md) -* [日本語](translations/README-ja.md) -* [한국어](translations/README-ko.md) -* [Turkish](translations/README-tr.md) -* [Greek](translations/README-gr.md) -* [Magyar](translations/README-hu.md) -* [Polish](translations/README-pl.md) -* [Русский](translations/README-ru.md) -* [Tiếng Việt](translations/README-vn.md) -* [فارسی](translations/README-fa.md) - -## What are Regular Expressions? - - From 1396c5c445c8ba4ee6bb63df69024cb95e3e4d47 Mon Sep 17 00:00:00 2001 From: Francisco <48428470+Fransjemo@users.noreply.github.com> Date: Thu, 12 Mar 2020 02:39:17 +0100 Subject: [PATCH 3/3] [WIP] add README-nl.md for Dutch translation --- translations/README-nl.md | 52 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 translations/README-nl.md diff --git a/translations/README-nl.md b/translations/README-nl.md new file mode 100644 index 00000000..ca635458 --- /dev/null +++ b/translations/README-nl.md @@ -0,0 +1,52 @@ +

+
+ + Learn Regex + +

+

+ + + + + + +

+

+ +## Vertalingen: + +* [English](README.md) +* [Español](translations/README-es.md) +* [Français](translations/README-fr.md) +* [Português do Brasil](translations/README-pt_BR.md) +* [中文版](translations/README-cn.md) +* [日本語](translations/README-ja.md) +* [한국어](translations/README-ko.md) +* [Turkish](translations/README-tr.md) +* [Greek](translations/README-gr.md) +* [Magyar](translations/README-hu.md) +* [Polish](translations/README-pl.md) +* [Русский](translations/README-ru.md) +* [Tiếng Việt](translations/README-vn.md) +* [فارسی](translations/README-fa.md) +* [Nederlands](README-nl.md) + +## Wat zijn reguliere expressies? + +> Een reguliere expressie omschrijft een verzameling tekenreeksen of symbolen die worden gebruikt om bepaalde patronen in een tekst te vinden. + +Een reguliere expressie is een patroon dat overeenkomt bij een bepaald tekenreeks +van links naar rechts. Dit wordt a.d.h.v. het gekozen tekenreeks/karakter die +dan vervolgens het gewenste patroon zal moeten verkrijgen om bv. +stukken tekst te doorzoeken, bewerken, filteren, en nog zo veel meer. +De term "reguliere expressie" is weliswaar een mondvol. Meestal zul je de afkortingstermen +"regex" of "regexp" tegenkomen. + +Imagine you are writing an application and you want to set the rules for when a +user chooses their username. We want to allow the username to contain letters, +numbers, underscores and hyphens. We also want to limit the number of characters +in the username so it does not look ugly. We can use the following regular expression to +validate the username: + +