Skip to content

Commit 382c645

Browse files
authored
Update 03_Strings_and_Characters.md
1 parent 9e8082c commit 382c645

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

source/02_language_guide/03_Strings_and_Characters.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -631,6 +631,11 @@ let dogString = "Dog‼🐶"
631631
</tr>
632632
</table>
633633

634+
如果表格无法正确显示,请参考下图:
635+
636+
![image](https://user-images.githubusercontent.com/2572987/145422655-288a7d40-75f5-4329-b43f-0d942b9b4623.png)
637+
638+
634639
```swift
635640
for codeUnit in dogString.utf8 {
636641
print("\(codeUnit) ", terminator: "")
@@ -674,6 +679,11 @@ print("")
674679
</tr>
675680
</table>
676681

682+
如果表格无法正确显示,请参考下图:
683+
684+
![image](https://user-images.githubusercontent.com/2572987/145422770-cdcb214a-430e-4a6d-b763-36657b3c8d7e.png)
685+
686+
677687
```swift
678688
for codeUnit in dogString.utf16 {
679689
print("\(codeUnit) ", terminator: "")

0 commit comments

Comments
 (0)