From Jason Turner

[re.general]

Diff to HTML by rtfpessoa

tmp/tmp_u4hethb/{from.md → to.md} RENAMED
@@ -2,28 +2,28 @@
2
 
3
  This Clause describes components that C++ programs may use to perform
4
  operations involving regular expression matching and searching.
5
 
6
  The following subclauses describe a basic regular expression class
7
- template and its traits that can handle char-like ([[strings.general]])
8
  template arguments, two specializations of this class template that
9
  handle sequences of `char` and `wchar_t`, a class template that holds
10
  the result of a regular expression match, a series of algorithms that
11
  allow a character sequence to be operated upon by a regular expression,
12
  and two iterator types for enumerating regular expression matches, as
13
- described in Table  [[tab:re.lib.summary]].
14
 
15
- **Table: Regular expressions library summary** <a id="tab:re.lib.summary">[tab:re.lib.summary]</a>
16
 
17
  | Subclause | | Header |
18
  | --------------- | --------------------------- | --------- |
19
  | [[re.def]] | Definitions | |
20
  | [[re.req]] | Requirements | |
21
- | [[re.const]] | Constants | |
22
  | [[re.badexp]] | Exception type | |
23
  | [[re.traits]] | Traits | |
24
- | [[re.regex]] | Regular expression template | `<regex>` |
25
  | [[re.submatch]] | Submatches | |
26
  | [[re.results]] | Match results | |
27
  | [[re.alg]] | Algorithms | |
28
  | [[re.iter]] | Iterators | |
29
  | [[re.grammar]] | Grammar | |
 
2
 
3
  This Clause describes components that C++ programs may use to perform
4
  operations involving regular expression matching and searching.
5
 
6
  The following subclauses describe a basic regular expression class
7
+ template and its traits that can handle char-like [[strings.general]]
8
  template arguments, two specializations of this class template that
9
  handle sequences of `char` and `wchar_t`, a class template that holds
10
  the result of a regular expression match, a series of algorithms that
11
  allow a character sequence to be operated upon by a regular expression,
12
  and two iterator types for enumerating regular expression matches, as
13
+ summarized in [[re.summary]].
14
 
15
+ **Table: Regular expressions library summary** <a id="re.summary">[re.summary]</a>
16
 
17
  | Subclause | | Header |
18
  | --------------- | --------------------------- | --------- |
19
  | [[re.def]] | Definitions | |
20
  | [[re.req]] | Requirements | |
21
+ | [[re.const]] | Constants | `<regex>` |
22
  | [[re.badexp]] | Exception type | |
23
  | [[re.traits]] | Traits | |
24
+ | [[re.regex]] | Regular expression template | |
25
  | [[re.submatch]] | Submatches | |
26
  | [[re.results]] | Match results | |
27
  | [[re.alg]] | Algorithms | |
28
  | [[re.iter]] | Iterators | |
29
  | [[re.grammar]] | Grammar | |