今天是2024年11月24日 第47周 星期日

代人,时大变了。

我们生活在大地上,但我们的梦想超越天空。

“User:白龙/common.js”的版本间的差异

来自Akarin
跳到导航 跳到搜索
标签移动网页编辑 移动版编辑
标签移动网页编辑 移动版编辑
第1行: 第1行:
str = document.getElementsByClassName('mw-parser-output')[0].outerText;
+
var reg = /(?:([0-9A-Za-z_])([\u4e00-\u9fa5]))|(?:([\u4e00-\u9fa5])([0-9A-Za-z_]))/g;
let s1 = /([0-9A-Za-z_])([\u4e00-\u9fa5])/g;
+
var result;
let s2 = /([\u4e00-\u9fa5])([0-9A-Za-z_])/g;
+
$('.mw-parser-output).each(function () {
temp = str.replace(s1, "$1 $2");
+
   while( match = reg.exec(targetText) !== null ) {
str = temp.replace(s2, "$1 $2");
+
     this = this.replace(reg, "$1$3 $2$4");
 +
   }
 +
});

2020年8月4日 (二) 03:50的版本

var reg = /(?:([0-9A-Za-z_])([\u4e00-\u9fa5]))|(?:([\u4e00-\u9fa5])([0-9A-Za-z_]))/g;
var result;
$('.mw-parser-output).each(function () {
    while( match = reg.exec(targetText) !== null ) {
        this = this.replace(reg, "$1$3 $2$4");
    }
});