gpt4 book ai didi

在全 Angular 和半 Angular 形式之间转换 UTF8 字符串的 JavaScript 函数

转载 作者:数据小太阳 更新时间:2023-10-29 04:53:58 25 4
gpt4 key购买 nike

编辑:感谢 GOTO 0,我现在确切地知道我的问题叫什么了。

我需要一个 JavaScript 函数来转换 from UTF-8 fullwidth form to halfwidth form .

最佳答案

显然,你想转换 halfwidth and fullwidth form字符转换为等效的基本拉丁形式。如果这是正确的,您可以使用正则表达式进行替换。这样的事情应该有效:

var x = "!abc ABC!";
var y = x.replace(
/[\uff01-\uff5e]/g,
function(ch) { return String.fromCharCode(ch.charCodeAt(0) - 0xfee0); }
);

其中 x 是您的输入字符串,y 是输出。

关于在全 Angular 和半 Angular 形式之间转换 UTF8 字符串的 JavaScript 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20486551/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com