Skip to content

Escape back slashes #29

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 2, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions doc/html/boost_regex/syntax/perl_syntax.html
Original file line number Diff line number Diff line change
Expand Up @@ -578,12 +578,12 @@ <h5>
<tr>
<td>
<p>
<code class="literal"><br> </code>
<code class="literal">\n</code>
</p>
</td>
<td>
<p>
<code class="literal"><br> </code>
<code class="literal">\n</code>
</p>
</td>
</tr>
Expand Down
28 changes: 14 additions & 14 deletions doc/syntax_perl.qbk
Original file line number Diff line number Diff line change
Expand Up @@ -299,24 +299,24 @@ The following escape sequences are all synonyms for single characters:

[table
[[Escape][Character]]
[[[^\a]][[^\a]]]
[[[^\e]][[^0x1B]]]
[[[^\f]][[^\f]]]
[[[^\n]][[^\n]]]
[[[^\r]][[^\r]]]
[[[^\t]][[^\t]]]
[[[^\v]][[^\v]]]
[[[^\b]][[^\b] (but only inside a character class declaration).]]
[[[^\cX]][An ASCII escape sequence - the character whose code point is X % 32]]
[[[^\xdd]][A hexadecimal escape sequence - matches the single character whose
[[[^\\a]][[^\\a]]]
[[[^\\e]][[^0x1B]]]
[[[^\\f]][[^\\f]]]
[[[^\\n]][[^\\n]]]
[[[^\\r]][[^\\r]]]
[[[^\\t]][[^\\t]]]
[[[^\\v]][[^\\v]]]
[[[^\\b]][[^\\b] (but only inside a character class declaration).]]
[[[^\\cX]][An ASCII escape sequence - the character whose code point is X % 32]]
[[[^\\xdd]][A hexadecimal escape sequence - matches the single character whose
code point is 0xdd.]]
[[[^\x{dddd}]][A hexadecimal escape sequence - matches the single character whose
[[[^\\x{dddd}]][A hexadecimal escape sequence - matches the single character whose
code point is 0xdddd.]]
[[[^\0ddd]][An octal escape sequence - matches the single character whose
[[[^\\0ddd]][An octal escape sequence - matches the single character whose
code point is 0ddd.]]
[[[^\N{name}]][Matches the single character which has the
[[[^\\N{name}]][Matches the single character which has the
[link boost_regex.syntax.collating_names symbolic name] /name/.
For example [^\N{newline}] matches the single character \\n.]]
For example [^\\N{newline}] matches the single character \\n.]]
]

[h5 "Single character" character classes:]
Expand Down