Escape regexp
This commit is contained in:
11
README.md
11
README.md
@ -16,6 +16,7 @@
|
|||||||
* [Curry](#curry)
|
* [Curry](#curry)
|
||||||
* [Difference between arrays](#difference-between-arrays)
|
* [Difference between arrays](#difference-between-arrays)
|
||||||
* [Distance between two points](#distance-between-two-points)
|
* [Distance between two points](#distance-between-two-points)
|
||||||
|
* [Escape regular expression](#escape-regular-expression)
|
||||||
* [Even or odd number](#even-or-odd-number)
|
* [Even or odd number](#even-or-odd-number)
|
||||||
* [Factorial](#factorial)
|
* [Factorial](#factorial)
|
||||||
* [Fibonacci array generator](#fibonacci-array-generator)
|
* [Fibonacci array generator](#fibonacci-array-generator)
|
||||||
@ -120,6 +121,16 @@ var distance = x0, y0, x1, y1 =>
|
|||||||
Math.sqrt(Math.pow(x1-x0, 2) + Math.pow(y1 - y0, 2))
|
Math.sqrt(Math.pow(x1-x0, 2) + Math.pow(y1 - y0, 2))
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Escape regular expression
|
||||||
|
|
||||||
|
Use `replace()` to escape special characters.
|
||||||
|
|
||||||
|
```js
|
||||||
|
escapeRegExp = s =>
|
||||||
|
s.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
### Even or odd number
|
### Even or odd number
|
||||||
|
|
||||||
Use `Math.abs()` to extend logic to negative numbers, check using the modulo (`%`) operator.
|
Use `Math.abs()` to extend logic to negative numbers, check using the modulo (`%`) operator.
|
||||||
|
|||||||
9
snippets/escape-regular-expression.md
Normal file
9
snippets/escape-regular-expression.md
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
### Escape regular expression
|
||||||
|
|
||||||
|
Use `replace()` to escape special characters.
|
||||||
|
|
||||||
|
```js
|
||||||
|
escapeRegExp = s =>
|
||||||
|
s.replace(/[.*+?^${}()|[\]\\]/g, '\\$&');
|
||||||
|
}
|
||||||
|
```
|
||||||
Reference in New Issue
Block a user