1export const code160to32 = (text: string) => { 2 // 非打断空格转换为空格 3 return text.replace(/\u00a0/g, " "); 4};