Update Regular-expressions.md

This commit is contained in:
Angelos Chalaris
2018-07-18 19:51:08 +03:00
committed by GitHub
parent 7e45f14fe8
commit 72b79bddcb

View File

@ -1,4 +1,4 @@
### Regular expressions
Regular expressions (known as regex) are patterns used to match character combinations in strings.
JavaScript provides regex implementation through the `RegExp` object.
Regular expressions (known as regex or regexp) are patterns used to match character combinations in strings.
JavaScript provides a regular expression implementation through the `RegExp` object.