Dear All, I have this data.
Code:
clear
input byte A str9 B
1 "里"
2 "里"
end
There are two (supposed) "same" Chinese characters. However, when I list as follows:
Code:
. list if B=="里"
+--------+
| A B |
|--------|
2. | 2 里 |
+--------+
I only see the second observation (no first observation). When I copy the Chinese word from the first observation and list
Code:
. list if B=="里"
+--------+
| A B |
|--------|
1. | 1 里 |
+--------+
I obtain only the first observation. According to these, it seems that they are two different words (but seem the same). Does anyone have any ideas? Thanks,
Note that, in the data example using dataex above, these two words look not the same, one is smaller and the other is bigger.
0 Response to same Chinese characters?
Post a Comment