forked from r-argentina-programa/js-xmas-edition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
regular-expressions.txt
45 lines (30 loc) · 1.12 KB
/
regular-expressions.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---------------------------------------
Regular Expressions
---------------------------------------
Read about RegExp here, very simple explanation with
a bunch of examples for everything:
** http://eloquentjavascript.net/09_regexp.html
A basic RegExp cheat sheet:
** https://www.debuggex.com/cheatsheet/regex/javascript
---------------------------------------
Working with regular expressions
---------------------------------------
Regular expressions are used with the RegExp methods `test`
and `exec` and with the String methods `match`, `replace`,
`search` and `split`.
Read in all details and with examples here:
** https://developer.mozilla.org/en/docs/Web/JavaScript/Guide/Regular_Expressions
----------------------------------------
Games with RegExp
----------------------------------------
My favourite is:
** https://regexcrossword.com/
Learn RegExp on examples:
** https://regexone.com/
More advanced one:
** https://alf.nu/RegexGolf
----------------------------------------
RegExp online tool
----------------------------------------
There is many of them, you can check on following up:
** https://regex101.com/