Live2D
摘要: 使用正则将手机号中间四位转换为 * 号: let mobile = "131 0000 8080" function convertMobile(mobile){ const mobileReg = /(\d{3})(\d{4})(\d{4})/ig; let mobileCalc = mobile 阅读全文
posted @ 2021-03-02 16:01 我的代码都是bug 阅读(267) 评论(0) 推荐(0) 编辑