Skip to content

Commit d35052f

Browse files
committed
deploy: 9f6c19a
1 parent 87058ca commit d35052f

File tree

4 files changed

+119
-29
lines changed

4 files changed

+119
-29
lines changed

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,12 +159,12 @@ <h2 id="_1">前言</h2>
159159
<blockquote>
160160
<p><img src="./img/warning.png" height="30px" width="auto" style="margin: 0; border: none"/> 如果你是在付费群中“买”到本书,或者打着小彭老师名号卖课,说明你可能是私有制的受害者。因为小彭老师从来没有付费才能看的课程,所有小彭老师课程都对全球互联网开放。</p>
161161
</blockquote>
162+
<p>如需离线查看,可以前往 <a href="https://github.com/parallel101/cppguidebook/releases">GitHub Release 页面</a> 下载 PDF 文件。</p>
162163
<p>如果你在阅读过程中遇到任何问题,可以在 <a href="https://github.com/parallel101/cppguidebook/issues">GitHub Issues</a> 中提出,小彭老师会尽力解答。</p>
163164
<p>也可以在 <a href="https://space.bilibili.com/263032155">B 站</a> 发私信给小彭老师哦。</p>
164165
<blockquote>
165166
<p><img src="./img/bulb.png" height="30px" width="auto" style="margin: 0; border: none"/> 本书还在持续更新中……要追番的话,可以在 <a href="https://github.com/parallel101/cppguidebook">GitHub</a> 点一下右上角的 “Watch” 按钮,每当小彭老师提交新 commit,GitHub 会向你发送一峰电子邮件,提醒你小彭老师更新了。</p>
166167
</blockquote>
167-
<p>如需离线查看,可以前往 <a href="https://github.com/parallel101/cppguidebook/releases">GitHub Release 页面</a> 下载 PDF 文件。</p>
168168
<h2 id="_2">格式约定</h2>
169169
<blockquote>
170170
<p><img src="./img/bulb.png" height="30px" width="auto" style="margin: 0; border: none"/> 用这种颜色字体书写的内容是温馨提示</p>

print_page/index.html

+59-14
Original file line numberDiff line numberDiff line change
@@ -179,12 +179,12 @@ <h2 id="index-_1">前言</h2>
179179
<blockquote>
180180
<p><img src="../img/warning.png" height="30px" width="auto" style="margin: 0; border: none"/> 如果你是在付费群中“买”到本书,或者打着小彭老师名号卖课,说明你可能是私有制的受害者。因为小彭老师从来没有付费才能看的课程,所有小彭老师课程都对全球互联网开放。</p>
181181
</blockquote>
182+
<p>如需离线查看,可以前往 <a href="https://github.com/parallel101/cppguidebook/releases">GitHub Release 页面</a> 下载 PDF 文件。</p>
182183
<p>如果你在阅读过程中遇到任何问题,可以在 <a href="https://github.com/parallel101/cppguidebook/issues">GitHub Issues</a> 中提出,小彭老师会尽力解答。</p>
183184
<p>也可以在 <a href="https://space.bilibili.com/263032155">B 站</a> 发私信给小彭老师哦。</p>
184185
<blockquote>
185186
<p><img src="../img/bulb.png" height="30px" width="auto" style="margin: 0; border: none"/> 本书还在持续更新中……要追番的话,可以在 <a href="https://github.com/parallel101/cppguidebook">GitHub</a> 点一下右上角的 “Watch” 按钮,每当小彭老师提交新 commit,GitHub 会向你发送一峰电子邮件,提醒你小彭老师更新了。</p>
186187
</blockquote>
187-
<p>如需离线查看,可以前往 <a href="https://github.com/parallel101/cppguidebook/releases">GitHub Release 页面</a> 下载 PDF 文件。</p>
188188
<h2 id="index-_2">格式约定</h2>
189189
<blockquote>
190190
<p><img src="../img/bulb.png" height="30px" width="auto" style="margin: 0; border: none"/> 用这种颜色字体书写的内容是温馨提示</p>
@@ -2841,19 +2841,64 @@ <h3 id="unicode-_16">区分字符类型</h3>
28412841
<pre><code class="language-cpp">#include &lt;cctype&gt;
28422842
</code></pre>
28432843
<p>函数清单:</p>
2844-
<p>|函数名称|判断的字符类型|
2845-
|isascii|0 到 0x7F 的所有 ASCII 字符|
2846-
|isalpha|大小写字母 A-Z a-z|
2847-
|isupper|大写字母 A-Z|
2848-
|islower|小写字母 a-z|
2849-
|isdigit|数字 0-9|
2850-
|isxdigit|十六进制数字 A-F a-f 0-9|
2851-
|isprint|可打印字符,包括字母、数字和标点等|
2852-
|isgraph|可打印字符,不包括空格|
2853-
|iscntrl|控制字符,除可打印字符外的全部|
2854-
|isspace|空白字符,如空格、换行、回车、制表符等|
2855-
|ispunct|标点符号|
2856-
|isalnum|字母或数字|</p>
2844+
<table>
2845+
<thead>
2846+
<tr>
2847+
<th>函数名称</th>
2848+
<th>判断的字符类型</th>
2849+
</tr>
2850+
</thead>
2851+
<tbody>
2852+
<tr>
2853+
<td>isascii</td>
2854+
<td>0 到 0x7F 的所有 ASCII 字符</td>
2855+
</tr>
2856+
<tr>
2857+
<td>isalpha</td>
2858+
<td>大小写字母 A-Z a-z</td>
2859+
</tr>
2860+
<tr>
2861+
<td>isupper</td>
2862+
<td>大写字母 A-Z</td>
2863+
</tr>
2864+
<tr>
2865+
<td>islower</td>
2866+
<td>小写字母 a-z</td>
2867+
</tr>
2868+
<tr>
2869+
<td>isdigit</td>
2870+
<td>数字 0-9</td>
2871+
</tr>
2872+
<tr>
2873+
<td>isxdigit</td>
2874+
<td>十六进制数字 A-F a-f 0-9</td>
2875+
</tr>
2876+
<tr>
2877+
<td>isprint</td>
2878+
<td>可打印字符,包括字母、数字和标点等</td>
2879+
</tr>
2880+
<tr>
2881+
<td>isgraph</td>
2882+
<td>可打印字符,不包括空格</td>
2883+
</tr>
2884+
<tr>
2885+
<td>iscntrl</td>
2886+
<td>控制字符,除可打印字符外的全部</td>
2887+
</tr>
2888+
<tr>
2889+
<td>isspace</td>
2890+
<td>空白字符,如空格、换行、回车、制表符等</td>
2891+
</tr>
2892+
<tr>
2893+
<td>ispunct</td>
2894+
<td>标点符号</td>
2895+
</tr>
2896+
<tr>
2897+
<td>isalnum</td>
2898+
<td>字母或数字</td>
2899+
</tr>
2900+
</tbody>
2901+
</table>
28572902
<blockquote>
28582903
<p><img src="../img/bulb.png" height="30px" width="auto" style="margin: 0; border: none"/> 更详细的表格可以看:</p>
28592904
</blockquote>

search/search_index.json

+1-1
Large diffs are not rendered by default.

unicode/index.html

+58-13
Original file line numberDiff line numberDiff line change
@@ -1631,19 +1631,64 @@ <h3 id="_16">区分字符类型</h3>
16311631
<pre><code class="language-cpp">#include &lt;cctype&gt;
16321632
</code></pre>
16331633
<p>函数清单:</p>
1634-
<p>|函数名称|判断的字符类型|
1635-
|isascii|0 到 0x7F 的所有 ASCII 字符|
1636-
|isalpha|大小写字母 A-Z a-z|
1637-
|isupper|大写字母 A-Z|
1638-
|islower|小写字母 a-z|
1639-
|isdigit|数字 0-9|
1640-
|isxdigit|十六进制数字 A-F a-f 0-9|
1641-
|isprint|可打印字符,包括字母、数字和标点等|
1642-
|isgraph|可打印字符,不包括空格|
1643-
|iscntrl|控制字符,除可打印字符外的全部|
1644-
|isspace|空白字符,如空格、换行、回车、制表符等|
1645-
|ispunct|标点符号|
1646-
|isalnum|字母或数字|</p>
1634+
<table>
1635+
<thead>
1636+
<tr>
1637+
<th>函数名称</th>
1638+
<th>判断的字符类型</th>
1639+
</tr>
1640+
</thead>
1641+
<tbody>
1642+
<tr>
1643+
<td>isascii</td>
1644+
<td>0 到 0x7F 的所有 ASCII 字符</td>
1645+
</tr>
1646+
<tr>
1647+
<td>isalpha</td>
1648+
<td>大小写字母 A-Z a-z</td>
1649+
</tr>
1650+
<tr>
1651+
<td>isupper</td>
1652+
<td>大写字母 A-Z</td>
1653+
</tr>
1654+
<tr>
1655+
<td>islower</td>
1656+
<td>小写字母 a-z</td>
1657+
</tr>
1658+
<tr>
1659+
<td>isdigit</td>
1660+
<td>数字 0-9</td>
1661+
</tr>
1662+
<tr>
1663+
<td>isxdigit</td>
1664+
<td>十六进制数字 A-F a-f 0-9</td>
1665+
</tr>
1666+
<tr>
1667+
<td>isprint</td>
1668+
<td>可打印字符,包括字母、数字和标点等</td>
1669+
</tr>
1670+
<tr>
1671+
<td>isgraph</td>
1672+
<td>可打印字符,不包括空格</td>
1673+
</tr>
1674+
<tr>
1675+
<td>iscntrl</td>
1676+
<td>控制字符,除可打印字符外的全部</td>
1677+
</tr>
1678+
<tr>
1679+
<td>isspace</td>
1680+
<td>空白字符,如空格、换行、回车、制表符等</td>
1681+
</tr>
1682+
<tr>
1683+
<td>ispunct</td>
1684+
<td>标点符号</td>
1685+
</tr>
1686+
<tr>
1687+
<td>isalnum</td>
1688+
<td>字母或数字</td>
1689+
</tr>
1690+
</tbody>
1691+
</table>
16471692
<blockquote>
16481693
<p><img src="../img/bulb.png" height="30px" width="auto" style="margin: 0; border: none"/> 更详细的表格可以看:</p>
16491694
</blockquote>

0 commit comments

Comments
 (0)