上一页 1 ··· 45 46 47 48 49 50 51 52 53 ··· 181 下一页
摘要: //stritrim(s1)将s1中的多个连续空格缩减为一个空格 . disp stritrim("good 123") good 123 //strltrim(s1)将s1中左侧的空格删除 . disp strltrim(" good 123") good 123 //strltrim(s1)将s 阅读全文
posted @ 2023-03-08 10:18 myrj 阅读(931) 评论(0) 推荐(0) 编辑
摘要: *split字符分隔 *1,2,3 -- > 1 2 3 clear //清内存 set obs 5 //设置5个样本 gen v1 = "1 2 3" //建立新变量,v1,其值都是"1 2 3" split v1,gen(a) //分隔v1,建立以a开头后面是分隔字符的变量名,空格是默认分隔符 阅读全文
posted @ 2023-03-08 08:11 myrj 阅读(251) 评论(0) 推荐(0) 编辑
摘要: //清除内存 clear //设置5个样本 set obs 5 //增加变量v1,都是this is the day gen v1 = "this is the my is day" //增加新变量,v1_replace,其值是替换v1中的第一个is为X gen v1_replace = subin 阅读全文
posted @ 2023-03-08 07:56 myrj 阅读(305) 评论(0) 推荐(0) 编辑
摘要: local sj=subinstr(subinstr("`c(current_time)'",":","",.)," ","",.) local wjma="`sj'" set seed `wjma' clear local shu= int(100*runiform() ) // local xm 阅读全文
posted @ 2023-03-08 07:46 myrj 阅读(42) 评论(0) 推荐(0) 编辑
摘要: local sj=subinstr(subinstr("`c(current_time)'",":","",.)," ","",.) local wjma="`sj'" set seed `wjma' clear local shu= int(100*runiform() ) // local xm 阅读全文
posted @ 2023-03-07 21:06 myrj 阅读(31) 评论(0) 推荐(0) 编辑
摘要: // plural(n,s) // // 用法:为字符串加s变为复数,当n的取值不是+/-1时,就在s后添加后缀"s";当n的取值是+/-1时,就在s后不加后缀"s" //n为1,不加s . disp plural(1,"banana") banana //n为2,加s . disp plural( 阅读全文
posted @ 2023-03-07 20:59 myrj 阅读(87) 评论(0) 推荐(0) 编辑
摘要: indexnot函数分析与详例解析 //indexnot(s1,s2)以单个字符判断为依据,结果是在s1中的位置表示; //indexnot(s1,s2) 返回s1中第一个在s2中找不到的字母的位置,若s1所有的字母在s2中均可以找到,则返回0 //字符a在第二个串中包含,而b不包含,b的位置是2, 阅读全文
posted @ 2023-03-07 20:03 myrj 阅读(178) 评论(0) 推荐(0) 编辑
摘要: Python 调用 js 文件,报 execjs._exceptions.ProgramError: SyntaxError: 缺少 ';' 错误 原因:execjs 默认使用了windows的JScript 引擎导致的,我们可以在python命令行中查看 import execjs execjs. 阅读全文
posted @ 2023-03-07 09:21 myrj 阅读(5537) 评论(0) 推荐(0) 编辑
摘要: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pyexecjs import execjs 阅读全文
posted @ 2023-03-07 06:55 myrj 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 1.打开闲鱼,设置 2.“全局自动回复设置” 3.设置相应的信息 4.“开启所有宝贝自动回复 阅读全文
posted @ 2023-03-06 20:45 myrj 阅读(553) 评论(0) 推荐(0) 编辑
上一页 1 ··· 45 46 47 48 49 50 51 52 53 ··· 181 下一页