You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -39,8 +40,7 @@ Now let's explore the rest of options.
39
40
40
41
These options govern how `fetch` sets HTTP `Referer` header.
41
42
42
-
That header contains the url of the page that made the request. In most scenarios, it plays a very minor informational role, but sometimes, for security purposes, it makes sense to remove or modify it.
43
-
.
43
+
That header contains the url of the page that made the request. In most scenarios, it plays a very minor informational role, but sometimes, for security purposes, it makes sense to remove or shorten it.
44
44
45
45
**The `referrer` option allows to set any `Referer` within the current origin) or disable it.**
46
46
@@ -72,13 +72,13 @@ Possible values are described in the [Referrer Policy specification](https://w3c
72
72
-**`"no-referrer-when-downgrade"`** -- default value: `Referer` is sent always, unless we send a request from HTTPS to HTTP (to less secure protocol).
73
73
-**`"no-referrer"`** -- never send `Referer`.
74
74
-**`"origin"`** -- only send the origin in `Referer`, not the full page URL, e.g. `http://site.com` instead of `http://site.com/path`.
75
-
-**`"origin-when-cross-origin"`** -- send full referrer to the same origin, but only the origin part for cross-origin requests.
76
-
-**`"same-origin"`** -- send full referrer to the same origin, but no referer for for cross-origin requests.
77
-
-**`"strict-origin"`** -- send only origin, don't send referrer for HTTPS→HTTP requests.
78
-
-**`"strict-origin-when-cross-origin"`** -- for same-origin send full referrer, for cross-origin send only origin, unless it's HTTPS→HTTP request, then send nothing.
75
+
-**`"origin-when-cross-origin"`** -- send full `Referer` to the same origin, but only the origin part for cross-origin requests.
76
+
-**`"same-origin"`** -- send full `Referer` to the same origin, but no referer for for cross-origin requests.
77
+
-**`"strict-origin"`** -- send only origin, don't send `Referer` for HTTPS→HTTP requests.
78
+
-**`"strict-origin-when-cross-origin"`** -- for same-origin send full `Referer`, for cross-origin send only origin, unless it's HTTPS→HTTP request, then send nothing.
79
79
-**`"unsafe-url"`** -- always send full url in `Referer`.
80
80
81
-
Let's say we have an admin zone with URL structure that shouldn't be visible from outside.
81
+
Let's say we have an admin zone with URL structure that shouldn't be known from outside of the site.
82
82
83
83
If we send a cross-origin `fetch`, then by default it sends the `Referer` header with the full url of our page (except when we request from HTTPS to HTTP, then no `Referer`).
Otherwise, if we'd like the remote side to see where the request comes from, we can send only the "origin" part of the url:
95
+
Otherwise, if we'd like the remote side to see only the domain where the request comes from, but not the full URL, we can send only the "origin" part of it:
Copy file name to clipboardexpand all lines: 9-regular-expressions/09-regexp-groups/3-find-decimal-positive-numbers/solution.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
2
-
An non-negative integer number is `pattern:\d+`. We should exclude `0`as the first digit, as we don't need zero, but we can allow it in further digits.
2
+
An non-negative integer number is `pattern:\d+`. A zero `0`can't be the first digit, but we should allow it in further digits.
3
3
4
4
So that gives us `pattern:[1-9]\d*`.
5
5
6
6
A decimal part is: `pattern:\.\d+`.
7
7
8
-
Because the decimal part is optional, let's put it in parentheses with the quantifier `pattern:'?'`.
8
+
Because the decimal part is optional, let's put it in parentheses with the quantifier `pattern:?`.
9
9
10
10
Finally we have the regexp: `pattern:[1-9]\d*(\.\d+)?`:
Copy file name to clipboardexpand all lines: 9-regular-expressions/09-regexp-groups/article.md
+15-10
Original file line number
Diff line number
Diff line change
@@ -47,13 +47,13 @@ In this example parentheses were used to make a group for repeating `pattern:(..
47
47
48
48
## Contents of parentheses
49
49
50
-
Parentheses are numbered from left to right. The search engine remembers the content of each and allows to reference it in the pattern or in the replacement string.
50
+
Parentheses are numbered from left to right. The search engine remembers the content matched by each of them and allows to reference it in the pattern or in the replacement string.
51
51
52
52
For instance, we'd like to find HTML tags `pattern:<.*?>`, and process them.
53
53
54
54
Let's wrap the inner content into parentheses, like this: `pattern:<(.*?)>`.
55
55
56
-
We'll get them into an array:
56
+
We'll get both the tag as a whole and its content as an array:
57
57
58
58
```js run
59
59
let str ='<h1>Hello, world!</h1>';
@@ -62,7 +62,7 @@ let reg = /<(.*?)>/;
62
62
alert( str.match(reg) ); // Array: ["<h1>", "h1"]
63
63
```
64
64
65
-
The call to [String#match](mdn:js/String/match) returns groups only if the regexp has no `pattern:/.../g` flag.
65
+
The call to [String#match](mdn:js/String/match) returns groups only if the regexp only looks for the first match, that is: has no `pattern:/.../g` flag.
66
66
67
67
If we need all matches with their groups then we can use `.matchAll` or `regexp.exec` as described in <info:regexp-methods>:
68
68
@@ -162,9 +162,9 @@ alert(groups.day); // 30
162
162
163
163
As you can see, the groups reside in the `.groups` property of the match.
164
164
165
-
We can also use them in replacements, as `pattern:$<name>` (like `$1..9`, but name instead of a digit).
165
+
We can also use them in the replacement string, as `pattern:$<name>` (like `$1..9`, but a name instead of a digit).
166
166
167
-
For instance, let's rearrange the date into `day.month.year`:
167
+
For instance, let's reformat the date into `day.month.year`:
168
168
169
169
```js run
170
170
let dateRegexp =/(?<year>[0-9]{4})-(?<month>[0-9]{2})-(?<day>[0-9]{2})/;
@@ -176,7 +176,7 @@ let rearranged = str.replace(dateRegexp, '$<day>.$<month>.$<year>');
176
176
alert(rearranged); // 30.04.2019
177
177
```
178
178
179
-
If we use a function, then named `groups` object is always the last argument:
179
+
If we use a function for the replacement, then named `groups` object is always the last argument:
180
180
181
181
```js run
182
182
let dateRegexp =/(?<year>[0-9]{4})-(?<month>[0-9]{2})-(?<day>[0-9]{2})/;
@@ -231,7 +231,12 @@ alert( result[1] ); // John
231
231
232
232
## Summary
233
233
234
-
- Parentheses can be:
235
-
- capturing `(...)`, ordered left-to-right, accessible by number.
236
-
- named capturing `(?<name>...)`, accessible by name.
237
-
- non-capturing `(?:...)`, used only to apply quantifier to the whole groups.
234
+
Parentheses group together a part of the regular expression, so that the quantifier applies to it as a whole.
235
+
236
+
Parentheses groups are numbered left-to-right, and can optionally be named with `(?<name>...)`.
237
+
238
+
The content, matched by a group, can be referenced both in the replacement string as `$1`, `$2` etc, or by the name `$name` if named.
239
+
240
+
So, parentheses groups are called "capturing groups", as they "capture" a part of the match. We get that part separately from the result.
241
+
242
+
We can exclude the group from remembering (make in "non-capturing") by putting `?:` at the start: `(?:...)`, that's used if we'd like to apply a quantifier to the whole group, but don't need it in the result.
0 commit comments