Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我如何在Stata中做到这一点?
说我的数据是:
Var1 Whoareyou Whoisme Idontknow Isthatyou Isyoume
我怎么知道第 6 个和第 7 个字符是不是“我”?
以前的答案只是偶然的正确。
substr(var1, 6, 2) == "me"
的最后一个参数substr()是提取的子字符串的最大长度,而不是选择的最后一个字符的位置。
substr()
在给出的示例中,me出现在字符串的末尾,因此6, 7在这些情况下 using 将起作用。
me
6, 7