Files
hustoj/web/cppreference-zh/chmhelp/cpp-string-byte-isspace.html
2025-08-01 12:57:54 +08:00

440 lines
38 KiB
HTML

<!DOCTYPE html>
<html lang="zh" dir="ltr" class="client-nojs" xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh">
<head><meta http-equiv="x-ua-compatible" content="ie=edge">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>std::isspace</title>
<link rel="stylesheet" href="ext.css" />
<link rel="stylesheet" href="site_modules.css" />
</head>
<body class="mediawiki ltr sitedir-ltr ns-0 ns-subject page-cpp_string_byte_isspace skin-cppreference2 action-view cpp-navbar">
<div id="cpp-content-base">
<div id="content"><a id="top"></a>
<h1 id="firstHeading" class="firstHeading"><span style="font-size:0.7em; line-height:130%">std::</span>isspace</h1>
<div id="bodyContent">
<div id="contentSub"><span class="subpages">&lt; <a href="cpp.html">cpp</a>&lrm; | <a href="cpp-string.html">string</a>&lrm; | <a href="cpp-string-byte.html">byte</a></span></div>
<div id="mw-content-text" lang="zh" dir="ltr" class="mw-content-ltr" xml:lang="zh">
<table class="t-dcl-begin">
<tbody>
<tr class="t-dsc-header">
<td>
<div>&#23450;&#20041;&#20110;&#22836;&#25991;&#20214; <code><a href="cpp-header-cctype.html">&lt;cctype&gt;</a></code></div>
</td>
<td></td>
<td></td>
</tr>
<tr class="t-dcl">
<td class="t-dcl-nopad">
<div><span class="mw-geshi cpp source-cpp"><span class="kw4">int</span> isspace<span class="br0">(</span> <span class="kw4">int</span> ch <span class="br0">)</span><span class="sy4">;</span></span></div>
</td>
<td class="t-dcl-nopad"></td>
<td class="t-dcl-nopad"></td>
</tr>
<tr class="t-dcl-sep">
<td></td>
<td></td>
<td></td>
</tr>
</tbody>
</table>
<p>&#26816;&#26597;&#32473;&#23450;&#30340;&#23383;&#31526;&#22312;&#24403;&#21069;&#30340; C &#26412;&#22320;&#29615;&#22659;&#20013;&#26159;&#21542;&#26159;&#31354;&#30333;&#23383;&#31526;&#12290;&#22312;&#40664;&#35748;&#30340;&#26412;&#22320;&#29615;&#22659;&#20013;&#65292;&#31354;&#30333;&#23383;&#31526;&#26159;:</p>
<ul>
<li>&#31354;&#26684; (<code>0x20</code>, <span class="t-c"><span class="mw-geshi cpp source-cpp"><span class="st0">&#39; &#39;</span></span></span>)</li>
<li>&#25442;&#39029; (<code>0x0c</code>, <span class="t-c"><span class="mw-geshi cpp source-cpp"><span class="st0">&#39;<span class="es1">\f</span>&#39;</span></span></span>)</li>
<li>&#25442;&#34892; (<code>0x0a</code>, <span class="t-c"><span class="mw-geshi cpp source-cpp"><span class="st0">&#39;<span class="es1">\n</span>&#39;</span></span></span>)</li>
<li>&#22238;&#36710; (<code>0x0d</code>, <span class="t-c"><span class="mw-geshi cpp source-cpp"><span class="st0">&#39;<span class="es1">\r</span>&#39;</span></span></span>)</li>
<li>&#27700;&#24179;&#21046;&#34920;&#31526; (<code>0x09</code>, <span class="t-c"><span class="mw-geshi cpp source-cpp"><span class="st0">&#39;<span class="es1">\t</span>&#39;</span></span></span>)</li>
<li>&#22402;&#30452;&#21046;&#34920;&#31526; (<code>0x0b</code>, <span class="t-c"><span class="mw-geshi cpp source-cpp"><span class="st0">&#39;<span class="es1">\v</span>&#39;</span></span></span>)</li>
</ul>
<p>&#22914;&#26524; <code>ch</code> &#30340;&#20540;&#19981;&#33021;&#34920;&#31034;&#20026; <span class="t-c"><span class="mw-geshi cpp source-cpp"><span class="kw4">unsigned</span> <span class="kw4">char</span></span></span> &#65292;&#24182;&#19988;&#19981;&#31561;&#20110; <span class="t-c"><span class="mw-geshi cpp source-cpp"><a href="cpp-io-c.html"><span class="kw1882">EOF</span></a></span></span> &#65292;&#21017;&#20989;&#25968;&#34892;&#20026;&#26410;&#23450;&#20041;&#12290;</p>
<h3><span class="mw-headline" id=".E5.8F.82.E6.95.B0">&#21442;&#25968;</span></h3>
<table class="t-par-begin">
<tr class="t-par">
<td>ch</td>
<td>-</td>
<td>&#35201;&#26816;&#26597;&#30340;&#23383;&#31526;&#23383;&#31526;</td>
</tr>
</table>
<h3><span class="mw-headline" id=".E8.BF.94.E5.9B.9E.E5.80.BC">&#36820;&#22238;&#20540;</span></h3>
<p>&#22914;&#26524;&#23383;&#31526;&#26159;&#31354;&#30333;&#23383;&#31526;&#65292;&#36820;&#22238;&#38750;&#38646;&#20540;&#65292;&#21542;&#21017;&#36820;&#22238;&#38646;&#12290;</p>
<h3><span class="mw-headline" id=".E6.B3.A8.E6.84.8F">&#27880;&#24847;</span></h3>
<p>&#21516;&#25152;&#26377;&#20854;&#20182;&#26469;&#33258; <a href="cpp-header-cctype.html"><tt>&lt;cctype&gt;</tt></a> &#30340;&#20989;&#25968;&#65292;&#33509;&#21442;&#25968;&#20540;&#26082;&#19981;&#33021;&#34920;&#31034;&#20026; <span class="t-c"><span class="mw-geshi cpp source-cpp"><span class="kw4">unsigned</span> <span class="kw4">char</span></span></span> &#21448;&#19981;&#31561;&#20110; <code>EOF</code> &#21017; <code>std::isspace</code> &#30340;&#34892;&#20026;&#26410;&#23450;&#20041;&#12290;&#20026;&#20102;&#20197;&#31616;&#21333;&#30340; <span class="t-c"><span class="mw-geshi cpp source-cpp"><span class="kw4">char</span></span></span> &#65288;&#25110; <span class="t-c"><span class="mw-geshi cpp source-cpp"><span class="kw4">signed</span> <span class="kw4">char</span></span></span> &#65289;&#23433;&#20840;&#20351;&#29992;&#27492;&#20989;&#25968;&#65292;&#39318;&#20808;&#35201;&#23558;&#21442;&#25968;&#36716;&#25442;&#20026; <span class="t-c"><span class="mw-geshi cpp source-cpp"><span class="kw4">unsigned</span> <span class="kw4">char</span></span></span> &#65306;</p>
<div dir="ltr" class="mw-geshi" style="text-align: left;">
<div class="cpp source-cpp">
<pre class="de1"><span class="kw4">bool</span> my_isspace<span class="br0">(</span><span class="kw4">char</span> ch<span class="br0">)</span>
<span class="br0">{</span>
<span class="kw1">return</span> std<span class="sy4">::</span><span class="me2">isspace</span><span class="br0">(</span><span class="kw1">static_cast</span><span class="sy1">&lt;</span><span class="kw4">unsigned</span> <span class="kw4">char</span><span class="sy1">&gt;</span><span class="br0">(</span>ch<span class="br0">)</span><span class="br0">)</span><span class="sy4">;</span>
<span class="br0">}</span></pre></div>
</div>
<p>&#31867;&#20284;&#22320;&#65292;&#36845;&#20195;&#22120;&#30340;&#20540;&#31867;&#22411;&#20026; <span class="t-c"><span class="mw-geshi cpp source-cpp"><span class="kw4">char</span></span></span> &#25110; <span class="t-c"><span class="mw-geshi cpp source-cpp"><span class="kw4">signed</span> <span class="kw4">char</span></span></span> &#26102;&#65292;&#19981;&#24212;&#30452;&#25509;&#23558;&#23427;&#20204;&#29992;&#20110;&#26631;&#20934;&#31639;&#27861;&#12290;&#32780;&#26159;&#35201;&#39318;&#20808;&#36716;&#25442;&#20540;&#20026; <span class="t-c"><span class="mw-geshi cpp source-cpp"><span class="kw4">unsigned</span> <span class="kw4">char</span></span></span> &#65306;</p>
<div dir="ltr" class="mw-geshi" style="text-align: left;">
<div class="cpp source-cpp">
<pre class="de1"><span class="kw4">int</span> count_spaces<span class="br0">(</span><span class="kw4">const</span> <a href="cpp-string-basic_string.html"><span class="kw1230">std::<span class="me2">string</span></span></a><span class="sy3">&amp;</span> s<span class="br0">)</span>
<span class="br0">{</span>
<span class="kw1">return</span> <a href="cpp-algorithm-count_if.html"><span class="kw1571">std::<span class="me2">count_if</span></span></a><span class="br0">(</span>s.<span class="me1">begin</span><span class="br0">(</span><span class="br0">)</span>, s.<span class="me1">end</span><span class="br0">(</span><span class="br0">)</span>,
<span class="co1">// static_cast&lt;int(*)(int)&gt;(std::isspace) // &#38169;&#35823;</span>
<span class="co1">// [](int c){ return std::isspace(c); } // &#38169;&#35823;</span>
<span class="co1">// [](char c){ return std::isspace(c); } // &#38169;&#35823;</span>
<span class="br0">[</span><span class="br0">]</span><span class="br0">(</span><span class="kw4">unsigned</span> <span class="kw4">char</span> c<span class="br0">)</span><span class="br0">{</span> <span class="kw1">return</span> std<span class="sy4">::</span><span class="me2">isspace</span><span class="br0">(</span>c<span class="br0">)</span><span class="sy4">;</span> <span class="br0">}</span> <span class="co1">// &#27491;&#30830;</span>
<span class="br0">)</span><span class="sy4">;</span>
<span class="br0">}</span></pre></div>
</div>
<h3><span class="mw-headline" id=".E5.8F.82.E9.98.85">&#21442;&#38405;</span></h3>
<table class="t-dsc-begin">
<tr class="t-dsc">
<td>
<div class="t-dsc-member-div">
<div><a href="cpp-locale-isspace.html"><span class="t-lines"><span>isspace<span class="t-dsc-small">(std::locale)</span></span></span></a></div>
</div>
</td>
<td>&#26816;&#26597;&#23383;&#31526;&#26159;&#21542;&#34987;&#26412;&#22320;&#29615;&#22659;&#20998;&#31867;&#20026;&#31354;&#30333;<br />
<span class="t-mark">(&#20989;&#25968;&#27169;&#26495;)</span></td>
</tr>
<tr class="t-dsc">
<td>
<div class="t-dsc-member-div">
<div><a href="cpp-string-wide-iswspace.html"><span class="t-lines"><span>iswspace</span></span></a></div>
</div>
</td>
<td>&#26816;&#26597;&#23485;&#23383;&#31526;&#26159;&#21542;&#20026;&#31354;&#30333;&#38388;&#38548;&#23383;&#31526;<br />
<span class="t-mark">(&#20989;&#25968;)</span></td>
</tr>
</table>
<table class="wikitable" style="font-size:85%;text-align:center">
<tr>
<th colspan="3">ASCII &#20540;</th>
<th rowspan="2">&#23383;&#31526;</th>
<th rowspan="2" style="font-size:85%">
<p><a href="cpp-string-byte-iscntrl.html"><tt>iscntrl</tt></a><br />
<a href="cpp-string-wide-iswcntrl.html"><tt>iswcntrl</tt></a></p>
</th>
<th rowspan="2" style="font-size:85%">
<p><a href="cpp-string-byte-isprint.html"><tt>isprint</tt></a><br />
<a href="cpp-string-wide-iswprint.html"><tt>iswprint</tt></a></p>
</th>
<th rowspan="2" style="font-size:85%">
<p><strong class="selflink"><tt>isspace</tt></strong><br />
<a href="cpp-string-wide-iswspace.html"><tt>iswspace</tt></a></p>
</th>
<th rowspan="2" style="font-size:85%">
<p><a href="cpp-string-byte-isblank.html"><tt>isblank</tt></a><br />
<a href="cpp-string-wide-iswblank.html"><tt>iswblank</tt></a></p>
</th>
<th rowspan="2" style="font-size:85%">
<p><a href="cpp-string-byte-isgraph.html"><tt>isgraph</tt></a><br />
<a href="cpp-string-wide-iswgraph.html"><tt>iswgraph</tt></a></p>
</th>
<th rowspan="2" style="font-size:85%">
<p><a href="cpp-string-byte-ispunct.html"><tt>ispunct</tt></a><br />
<a href="cpp-string-wide-iswpunct.html"><tt>iswpunct</tt></a></p>
</th>
<th rowspan="2" style="font-size:85%">
<p><a href="cpp-string-byte-isalnum.html"><tt>isalnum</tt></a><br />
<a href="cpp-string-wide-iswalnum.html"><tt>iswalnum</tt></a></p>
</th>
<th rowspan="2" style="font-size:85%">
<p><a href="cpp-string-byte-isalpha.html"><tt>isalpha</tt></a><br />
<a href="cpp-string-wide-iswalpha.html"><tt>iswalpha</tt></a></p>
</th>
<th rowspan="2" style="font-size:85%">
<p><a href="cpp-string-byte-isupper.html"><tt>isupper</tt></a><br />
<a href="cpp-string-wide-iswupper.html"><tt>iswupper</tt></a></p>
</th>
<th rowspan="2" style="font-size:85%">
<p><a href="cpp-string-byte-islower.html"><tt>islower</tt></a><br />
<a href="cpp-string-wide-iswlower.html"><tt>iswlower</tt></a></p>
</th>
<th rowspan="2" style="font-size:85%">
<p><a href="cpp-string-byte-isdigit.html"><tt>isdigit</tt></a><br />
<a href="cpp-string-wide-iswdigit.html"><tt>iswdigit</tt></a></p>
</th>
<th rowspan="2" style="font-size:85%">
<p><a href="cpp-string-byte-isxdigit.html"><tt>isxdigit</tt></a><br />
<a href="cpp-string-wide-iswxdigit.html"><tt>iswxdigit</tt></a></p>
</th>
</tr>
<tr>
<th>&#21313;&#36827;&#21046;</th>
<th>&#21313;&#20845;&#36827;&#21046;</th>
<th>&#20843;&#36827;&#21046;</th>
</tr>
<tr>
<td>0&ndash;8</td>
<td><code>\x0</code>&ndash;<code>\x8</code></td>
<td><code>\0</code>&ndash;<code>\10</code></td>
<td>&#25511;&#21046;&#30721; (<code>NUL</code> &#31561;)</td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
<tr>
<td>9</td>
<td><code>\x9</code></td>
<td><code>\11</code></td>
<td>&#21046;&#34920; (<code>\t</code>)</td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
<tr>
<td>10&ndash;13</td>
<td><code>\xA</code>&ndash;<code>\xD</code></td>
<td><code>\12</code>&ndash;<code>\15</code></td>
<td>&#31354;&#30333;&#31526; (<code>\n</code>, <code>\v</code>, <code>\f</code>, <code>\r</code>)</td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
<tr>
<td>14&ndash;31</td>
<td><code>\xE</code>&ndash;<code>\x1F</code></td>
<td><code>\16</code>&ndash;<code>\37</code></td>
<td>&#25511;&#21046;&#30721;</td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
<tr>
<td>32</td>
<td><code>\x20</code></td>
<td><code>\40</code></td>
<td>space</td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
<tr>
<td>33&ndash;47</td>
<td><code>\x21</code>&ndash;<code>\x2F</code></td>
<td><code>\41</code>&ndash;<code>\57</code></td>
<td><code>!&quot;#$%&amp;&#39;()*+,-./</code></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
<tr>
<td>48&ndash;57</td>
<td><code>\x30</code>&ndash;<code>\x39</code></td>
<td><code>\60</code>&ndash;<code>\71</code></td>
<td><code>0123456789</code></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
</tr>
<tr>
<td>58&ndash;64</td>
<td><code>\x3A</code>&ndash;<code>\x40</code></td>
<td><code>\72</code>&ndash;<code>\100</code></td>
<td><code>:;&lt;=&gt;?@</code></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
<tr>
<td>65&ndash;70</td>
<td><code>\x41</code>&ndash;<code>\x46</code></td>
<td><code>\101</code>&ndash;<code>\106</code></td>
<td><code>ABCDEF</code></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
</tr>
<tr>
<td>71&ndash;90</td>
<td><code>\x47</code>&ndash;<code>\x5A</code></td>
<td><code>\107</code>&ndash;<code>\132</code></td>
<td><code>GHIJKLMNOP</code><br />
<code>QRSTUVWXYZ</code></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
<tr>
<td>91&ndash;96</td>
<td><code>\x5B</code>&ndash;<code>\x60</code></td>
<td><code>\133</code>&ndash;<code>\140</code></td>
<td><code>[\]^_`</code></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
<tr>
<td>97&ndash;102</td>
<td><code>\x61</code>&ndash;<code>\x66</code></td>
<td><code>\141</code>&ndash;<code>\146</code></td>
<td><code>abcdef</code></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
</tr>
<tr>
<td>103&ndash;122</td>
<td><code>\x67</code>&ndash;<code>\x7A</code></td>
<td><code>\147</code>&ndash;<code>\172</code></td>
<td><code>ghijklmnop</code><br />
<code>qrstuvwxyz</code></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
<tr>
<td>123&ndash;126</td>
<td><code>\x7B</code>&ndash;<code>\x7E</code></td>
<td><code>\172</code>&ndash;<code>\176</code></td>
<td><code>{|}~</code></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
<tr>
<td>127</td>
<td><code>\x7F</code></td>
<td><code>\177</code></td>
<td>&#36864;&#26684;&#23383;&#31526; (<code>DEL</code>)</td>
<td style="background: #90ff90; color: black; vertical-align: middle; text-align: center;" class="table-yes"><b><code>&ne;0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
<td style="background:#ff9090; color:black; vertical-align: middle; text-align: center;" class="table-no"><b><code>0</code></b></td>
</tr>
</table>
</div>
<div class="visualClear"></div>
</div>
</div>
</div>
</body>
</html>