Skip to content

Commit 891ea1f

Browse files
committed
String
1 parent 2a53d55 commit 891ea1f

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ String
335335
### Property Methods
336336
```text
337337
+---------------+----------+----------+----------+----------+----------+
338-
| | [ !#$%…] | [a-zA-Z] | [¼½¾…] | [¹²³…] | [0-9] |
338+
| | [ !#$%…] | [a-zA-Z] | [¼½¾…] | [²³¹…] | [0-9] |
339339
+---------------+----------+----------+----------+----------+----------+
340340
| isprintable() | yes | yes | yes | yes | yes |
341341
| isalnum() | | yes | yes | yes | yes |
@@ -346,6 +346,7 @@ String
346346
```
347347
* **Also: `'isspace()'` checks for `'[ \t\n\r…]'`.**
348348

349+
349350
Regex
350351
-----
351352
```python

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@
443443
<li><strong>Also: <code class="python hljs"><span class="hljs-string">'lower()'</span></code>, <code class="python hljs"><span class="hljs-string">'upper()'</span></code>, <code class="python hljs"><span class="hljs-string">'capitalize()'</span></code> and <code class="python hljs"><span class="hljs-string">'title()'</span></code>.</strong></li>
444444
</ul>
445445
<div><h3 id="propertymethods">Property Methods</h3><pre><code class="text language-text">+---------------+----------+----------+----------+----------+----------+
446-
| | [ !#$%…] | [a-zA-Z] | [¼½¾…] | [¹²³…] | [0-9] |
446+
| | [ !#$%…] | [a-zA-Z] | [¼½¾…] | [²³¹…] | [0-9] |
447447
+---------------+----------+----------+----------+----------+----------+
448448
| isprintable() | yes | yes | yes | yes | yes |
449449
| isalnum() | | yes | yes | yes | yes |

web/script_2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ const DIAGRAM_12_A =
197197

198198
const DIAGRAM_12_B =
199199
'┏━━━━━━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┯━━━━━━━━━━┓\n' +
200-
'┃ │ [ !#$%…] │ [a-zA-Z] │ [¼½¾…] │ [¹²³…] │ [0-9] ┃\n' +
200+
'┃ │ [ !#$%…] │ [a-zA-Z] │ [¼½¾…] │ [²³¹…] │ [0-9] ┃\n' +
201201
'┠───────────────┼──────────┼──────────┼──────────┼──────────┼──────────┨\n' +
202202
'┃ isprintable() │ ✓ │ ✓ │ ✓ │ ✓ │ ✓ ┃\n' +
203203
'┃ isalnum() │ │ ✓ │ ✓ │ ✓ │ ✓ ┃\n' +

0 commit comments

Comments
 (0)