如何将货币HTML字符串转换为JavaScript中的符号。
这是API的响应。
例如,£需要像£那样转换。

您可以在此处查看我的API响应:

>   getOptions: {
>             "FKP": "Falkland Islands pound (£)",
>             "GBP": "Pound sterling (£)",
>             "GEL": "Georgian lari (ლ)",
>             "GGP": "Guernsey pound (£)",
>     }


Please suggest.
https://html-online.com/editor/

Following this link if you are click this link (just paste inside in this link  `£` automatically converted pounds Symbol like £ )

最佳答案

是的,最后我得到了一个绝对的解决方案。
就像我安装了npm install html-entities这样。之后,当我们在这样的特殊场所使用时
两者都给这个

const Entities = require('html-entities').AllHtmlEntities;

const entities = new Entities();


之后,console.log(entities.decode('£'))得到结果输出像£

引用此链接https://www.npmjs.com/package/html-entities

关于javascript - 特殊文本字符的HTML实体代码获取货币符号,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45931151/

10-12 00:21