Part 3 Additional articles¶
The Modern JavaScript Tutorial Part 3 ノート。
- Frames and windows
- Binary data, files
- Network requests
- Storing data in the browser
- Animation
- Web components
- Regular expressions
- Patterns and flags
- Character classes
- Unicode: flag
u
and class\p{...}
- Anchors: string start
^
and end$
- Multiline mode of anchors
^$
, flagm
- Word boundary:
\b
- Escaping, special characters
- Sets and ranges
[...]
- Quantifiers
+
,*
,?
and{n}
- Greedy and lazy quantifiers
- Capturing groups
- Backreferences in pattern:
\N
and\k<name>
- Alternation (OR)
|
- Lookahead and lookbehind
- Catastrophic backtracking
- Sticky flag
"y"
, searching at position - Methods of
RegExp
andString