Dear All, I have this data.
There are two (supposed) "same" Chinese characters. However, when I list as follows:
I only see the second observation (no first observation). When I copy the Chinese word from the first observation and list
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.
Code:
clear input byte A str9 B 1 "里" 2 "里" end
Code:
. list if B=="里" +--------+ | A B | |--------| 2. | 2 里 | +--------+
Code:
. list if B=="里" +--------+ | A B | |--------| 1. | 1 里 | +--------+
Note that, in the data example using dataex above, these two words look not the same, one is smaller and the other is bigger.
Comment