工具函数
将数值格式化成中文数字
export function digitUppercase(n) {
const fraction = ["角", "分"];
const digit = ["零", "壹", "贰", "叁", "肆", "伍", "陆", "柒", "捌", "玖"];
const unit = [["元", "万", "亿"], ["", "拾", "佰", "仟"]];
let num = Math.abs(n);
let s = "";
fraction.forEach((item, index) => {
s += (digit[Math.floor(num * 10 * 10 ** index) % 10] + item).replace(
/零./,
""
);
});
s = s || "整";
num = Math.floor(num);
for (let i = 0; i < unit[0].length && num > 0; i += 1) {
let p = "";
for (let j = 0; j < unit[1].length && num > 0; j += 1) {
p = digit[num % 10] + unit[1][j] + p;
num = Math.floor(num / 10);
}
s = p.replace(/(零.)*零$/, "").replace(/^$/, "零") + unit[0][i] + s;
}
return s
.replace(/(零.)*零元/, "元")
.replace(/(零.)+/g, "零")
.replace(/^整$/, "零元整");
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
连字符转驼峰
export function hyphenToHump() {
return this.replace(/-(\w)/g, (...args) => {
return args[1].toUpperCase();
});
}
1
2
3
4
5
2
3
4
5
驼峰转连字符
export function humpToHyphen() {
return this.replace(/([A-Z])/g, "-$1").toLowerCase();
}
1
2
3
2
3
否为完整的 http 接口
const reg = /(((^https?:(?:\/\/)?)(?:[-;:&=\+\$,\w]+@)?[A-Za-z0-9.-]+|(?:www.|[-;:&=\+\$,\w]+@)[A-Za-z0-9.-]+)((?:\/[\+~%\/.\w-_]*)?\??(?:[-\+=&;%@.\w_]*)#?(?:[\w]*))?)$/g;
export function isUrl(path) {
return reg.test(path);
}
1
2
3
4
5
2
3
4
5