Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/vim/5.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Stata browse指令莫名其妙地阻塞了URL_Stata - Fatal编程技术网

Stata browse指令莫名其妙地阻塞了URL

Stata browse指令莫名其妙地阻塞了URL,stata,Stata,根据Stata关于{browse args:text}指令的SMCLpdf文档: 示例 . . . 您可以{浏览“”:访问Stata网站} 然而: . di "you can {browse "http://www.stata.com":visit the Stata website} " you can {browse http:/ invalid name r(198); 同样地: . di as smcl "you can {browse "http://www.stata.com":v

根据Stata关于
{browse args:text}
指令的
SMCL
pdf文档:

示例
. . . 您可以{浏览“”:访问Stata网站}

然而:

. di "you can {browse "http://www.stata.com":visit the Stata website} "
you can {browse http:/ invalid name
r(198);
同样地:

. di as smcl "you can {browse "http://www.stata.com":visit the Stata website} "
you can {browse http:/ invalid name
r(198);

我在Linux和macOS上使用Stata 15.1。

您只需使用双引号:

. display `"you can {browse "http://www.stata.com":visit the Stata website}"'
you can visit the Stata website

您只需要使用双引号:

. display `"you can {browse "http://www.stata.com":visit the Stata website}"'
you can visit the Stata website