苹果手机在开启旁白时,字母和数字之间的间隔符号

符号为: 

复制上面那一行在idea中显示为下图

是空格的一种,说是叫六分之一空格

在idea中长这个样子

Unicode编码为\u2006

const byteSequence = new Uint8Array([0xE2, 0x80, 0x86]);
const decoder = new TextDecoder('utf-8');
const unicodeString = decoder.decode(byteSequence);

console.log(unicodeString); // 输出:  
console.log(unicodeString.codePointAt(0).toString(16)); // 输出: 2006
console.log(unicodeString.codePointAt(0).toString(10)); // 输出: 8198

空白字符有空格

标准空格(U+0020)
制表符(U+0009)
换行符(U+000A)
回车符(U+000D)
垂直制表符(U+000B)
换页符(U+000C)
六分之一空格(U+2006)

const str = ' Hello  World \ntest\texample ';

// 使用正则表达式去除所有空格
const cleanedStr = str.replace(/[\u0020\u0009\u000A\u000B\u000C\u000D\u2006]/g, '');

console.log(cleanedStr); // 输出: HelloWorldtestexample
console.log(cleanedStr.length); // 输出: 19

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值