数字类型 certificatecodecopy = certificatecode.replace(/^(.{6})(?:\d+)(.{4})$/, "\$1****\$2"); 所有类型 enginenocopy = engineno.replace(/^(.{2})(?:\w+)(.{1})$ ...
分类:
Web程序 时间:
2020-07-22 16:23:59
阅读次数:
216
在前端项目开发中,前端的本地存储是必不可少的,今天小编就前端的本地存储在项目中的使用详细的介绍一下。前端本地存储主要有: cookie localStorage sessionStorage webSQL/indexDB 接下来就这三种前端常用的存储方式进行介绍。 cookie cookie就是存储 ...
分类:
其他好文 时间:
2020-07-22 15:45:38
阅读次数:
59
@Test public void testRegex() throws Exception { String str="das:! $%#*(*("; String regEx = "[`~!@#$%^&*()+=|{}':;'\\[\\].<>/?~!@#¥%……&*()——+|{}【】‘;:” ...
分类:
编程语言 时间:
2020-07-21 14:03:52
阅读次数:
76
在转换的字符串中,存在null时,就会出现NameError: name ‘null’ is not defined这个错误。 解决办法:使用replace方法将null替换掉 注意:replace argument 2 must be str replace的两个参数都必须为字符串 str.rep ...
分类:
其他好文 时间:
2020-07-21 13:58:35
阅读次数:
67
官网语法如下所示https://cwiki.apache.org/confluence/display/Hive/GettingStarted#GettingStarted-AlteringandDroppingTables ***注意:***REPLACE列 替换所有现有列,只更改表的模式,而不是 ...
分类:
其他好文 时间:
2020-07-21 09:46:44
阅读次数:
105
直接赋值、apply、assign、分条件赋值 仍旧以天气数据为案例 第一步:清洗数据 df.loc[:,'bWendu']=df['bWendu].str.replace('C','').astype('int32') 上图包含了直接赋值方法 第二、apply方法 df['wendu_type'] ...
分类:
其他好文 时间:
2020-07-20 22:29:31
阅读次数:
90
vue路由跳转有四种方式 router-link this.$router.push() (函数里面调用) this.$router.replace() (用法同push) this.$router.go(n) 一、不带参 1.1 router-link <router-link :to="{nam ...
分类:
其他好文 时间:
2020-07-20 20:29:52
阅读次数:
83
16:请写一个函数,该函数 参数为一个字符串,请验证该字符串是否是一个合法的电话号码,合法返回True,否则返回False规则如下 ? 该字符串必须全部都是数字。 ? 该字符串长度为11位。 ? 该字符必须以数字1开头。 比如validate_phone("13423445566") ? Truev ...
分类:
编程语言 时间:
2020-07-20 15:33:25
阅读次数:
83
元素.val().replace(/\ +/g,"");//去掉空格 .replace(/\ +/g,"") //去掉空格方法 元素.text().replace(/[ ]/g,""); //去掉空格 .replace(/[ ]/g,"")//去掉空格 元素.val().replace(/[\r\n ...
分类:
Web程序 时间:
2020-07-20 13:36:50
阅读次数:
174
参考: https://www.cnblogs.com/En-summerGarden/p/10145295.html //只能输入整数 function Integer(obj) { if (obj.value.length == 1) { obj.value = obj.value.replac ...
分类:
Web程序 时间:
2020-07-20 10:56:19
阅读次数:
153