/*强制关闭网页*/
function closeWebPage() {document.querySelector("html").style.display = "none";let ua = navigator.userAgent, w = top;if (ua.indexOf("MSIE") > 0) {if (ua.indexOf("MSIE 6.0") > 0) {w.opener = null;w.close();} else {w.open("", "_top");w.close();}} else if (ua.indexOf("Firefox") > 0) {w.location.replace("about:blank");} else {w.opener = null;w.open("", "_self", "");w.close();}
}
#include
题目:表示数值的字符串 请实现一个函数用来判断字符串是否表示数值(包括整数和小数)。例如,字符串"+100"、"5e2"、"-123"、"3.1416"、"0123"及"-1E-16"都表示数值,但"12e"、"1a3.14"、"1.2.3"、"+-5"及"12e+5.4"都不是。 解题: 数值错误的形式有多种多样,但是正确的...
加法伺候 //超过20位数值相加---------------------------------------- function bigNumAdd(a, b) {if (!(typeof a === "string" && typeof b === "string")) return console.log("传入参数必...
业务场景: 从中文字句中匹配出指定的中文子字符串 .这样的情况我在工作中遇到非常多, 特梳理总结如下. 难点: 处理GBK和utf8之类的字符编码, 同时正则匹配Pattern中包含汉字,要汉字正常发挥作用,必须非常谨慎.推荐最好统一为utf8编码,如果不是这种最优情况,也有酌情处理. 往往一个具有普适性的正则表达式会简化程...
简单record 一下
#include