. use auto_zh.dta, clear
(1978年汽车数据)
. summ 里程 价格
Variable | Obs Mean Std. Dev. Min Max
-------------+---------------------------------------------------------
里程 | 74 21.2973 5.785503 12 41
价格 | 74 6165.257 2949.496 3291 15906
. regress 里程 价格
Source | SS df MS Number of obs = 74
-------------+---------------------------------- F(1, 72) = 20.26
Model | 536.541807 1 536.541807 Prob > F = 0.0000
Residual | 1906.91765 72 26.4849674 R-squared = 0.2196
-------------+---------------------------------- Adj R-squared = 0.2087
Total | 2443.45946 73 33.4720474 Root MSE = 5.1464
------------------------------------------------------------------------------
里程 | Coef. Std. Err. t P>|t| [95% Conf. Interval]
-------------+----------------------------------------------------------------
价格 | -.0009192 .0002042 -4.50 0.000 -.0013263 -.0005121
_cons | 26.96417 1.393952 19.34 0.000 24.18538 29.74297
------------------------------------------------------------------------------
Unicode代码
. di ustrtohex("温州")
\u6e29\u5dde
. di ustrunescape("\u6e29\u5dde")
温州
UTF-8编码
. di tobytes("温州")
\d230\d184\d169\d229\d183\d158
. di char(230)+char(184)+char(169)
温
长度
. di strlen("温州")
6
. di ustrlen("温州")
2
. di usubstr("温州商学院", 3, .)
商学院
. local pos = ustrpos("温州,商学院", ",")
. local before = usubstr("温州,商学院", 1, `pos'-1)
. local after = usubstr("温州,商学院", `pos'+1, .)
. di "`before'`after'"
温州商学院
. di ustrwordcount("实践是检验真理的唯一标准")
7
. di ustrword("实践是检验真理的唯一标准", 1)
实践
. di ustrword("实践是检验真理的唯一标准", 2)
是
. di ustrword("实践是检验真理的唯一标准", 3)
检验
. di ustrword("实践是检验真理的唯一标准", 4)
真理
. di ustrword("实践是检验真理的唯一标准", 5)
的
. di ustrword("实践是检验真理的唯一标准", 6)
唯一
. di ustrword("实践是检验真理的唯一标准", 7)
标准
. di ustrregexm("Wenzhou Business School", "[\u4e00-\u9fa5]")
0
. di ustrregexm("Wenzhou Business School 温州商学院", "[\u4e00-\u9fa5]")
1
. di ustrregexra("Wenzhou Business School 温州商学院", "[\u4e00-\u9fa5]", "")
Wenzhou Business School