blmius blmius
3年前
html文本去掉html标签只留文本的解决方案
str.replace(/<^/g,"");本文转自https://blog.csdn.net/JunZhao09/article/details/108649418(https://blog.csdn
Kent_Sun Kent_Sun
3年前
js去除字符串
js去除字符串js<DOCTYPEhtml<html<head<title</title</head<body</body<scripttype"text/javascript"functiondelHtmlTag(str){  returnstr.replace(/<^/g,"");}vars
Wesley13 Wesley13
3年前
java string 字符串替换
i、replace方法  该方法的作用是替换字符串中所有指定的字符,然后生成一个新的字符串。经过该方法调用以后,原来的字符串不发生改变。例如:     String s  “abcat”;     String s1  s.replace(‘a’,‘1’);  该代码的作用是将字符串s中所有的字符a替换成字符1,生成
LinMeng LinMeng
4年前
手机号及身份证号的脱敏处理
详情见下desensitization(){//法人证件号码letstrthis.pageData.customerInfo.delegateCertithis.pageData.customerInfo.delegateCertistr.replace(/(w{2})w(w{4})/,
LinMeng LinMeng
4年前
考虑左位补0,只能输入数字,限位15位且规避掉空格的方法
languageleftAdd0(){varvaluethis.form.inputNum;varinputNumthis.form.inputNum.replace(/s/g,')varreg/^ds$/;if(reg.test(value)&&inputNum){this.$messag
Wesley13 Wesley13
3年前
JS通用的解析URL方法
functionparseURL(url){varadocument.createElement('a');a.hrefurl;return{source:url,protocol:a.protocol.replace(':',''),
Stella981 Stella981
3年前
JavaScript document open() 方法:打开一个新文档
<html<head<scripttype"text/javascript"functioncreateNewDoc(){varnew_docdocument.open("text/html","replace");vartxt"<html<bo
Stella981 Stella981
3年前
JavaScript日期格式转换
//日期格式转换functiondateFormat(val){//val需要转换的日期varfmt"yyyyMMdd";//日期格式valval.replace(//g,"/");vardaynewDate(val);
Wesley13 Wesley13
3年前
ES6 字符串首字母大写
functionEnglish(str){returnstr.toLowerCase().replace(/(|^)az/g,(L)L.toUpperCase());//执行代码}console.log(English(a));拆解  思路:将字符串全部转化成小写
达里尔 达里尔
3星期前
时间转换方法
vueexportfunctionformatDate(date,fmt)if(/(y)/.test(fmt))fmtfmt.replace(RegExp.$1,(date.getFullYear()'').substr(4RegExp.$1.leng