gpt4 book ai didi

javascript替换特殊字符

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:38:02 25 4
gpt4 key购买 nike

是否可以使用 javascript 字符串替换功能翻译特殊字符,如 ®、ü 等?

最佳答案

当然是!

在 Firebug 控制台中运行

"®ü".replace(/[®ü]/g,"replaced")

返回

“替换替换”

你也可以这样做

"®ü".replace(/[\xAE\xFC]/g,"Wohoo! ");

返回

"Wohoo! Wohoo! "

可以在 http://www.ascii.cl/htmlcodes.htm 找到一个很好的十六进制符号查找页面。


示例

在这个页面上运行这个 jQuery

$(".post-text").text().replace(/®/g," ******** ")

返回

" is it possible to translate special characters like ******** , ü etc with javascript 
String replace function? Use this syntax... string.replace(/\xCC/g/,''); Where 'CC' is
the hex character code for the char you are wanting to replace. In this example I am
replacing with empty string ''. yes, and is as simple as can be: ' ******** '.replace('
******** ','anything'); Sure is! Running this in the Firebug console " ******** ü".
replace(/[ ******** ü]/g,"replaced") returned replacedreplaced "

关于javascript替换特殊字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4347366/

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