将字符串转换为化学式

发布于 2025-01-09 09:36:12 字数 390 浏览 0 评论 0原文

在 Nuxt Js Out Put 中将字符串“C11H15NO3”转换为化学式

var string = 'C11H15NO3',
result = string
    .split(/(\d+)/)
    .map((s, i) => i % 2 ? `<sub>${s}</sub>` : s)
    .join('');

console.log(result)

: C11H15NO3

但我需要输出如下:C11H15NO3 喜欢这个

convert a string "C11H15NO3" into chemical formula in Nuxt Js

var string = 'C11H15NO3',
result = string
    .split(/(\d+)/)
    .map((s, i) => i % 2 ? `<sub>${s}</sub>` : s)
    .join('');

console.log(result)

Out Put :
C11H15NO3

But I need out put like : C11H15NO3
likethis

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

顾冷 2025-01-16 09:36:12

这只是 console.log() 的输出,因为它仍然只是一个字符串。如果您写入文档,它将加载到 DOM 中并呈现为 html。

var string = 'C11H15NO3',
  result = string
  .split(/(\d+)/)
  .map((s, i) => i % 2 ? `<sub>${s}</sub>` : s)
  .join('');

console.log(result)
document.write(result)

That is just the output of console.log() because it is still just a string. If you write to the document it will load into the DOM and render as html.

var string = 'C11H15NO3',
  result = string
  .split(/(\d+)/)
  .map((s, i) => i % 2 ? `<sub>${s}</sub>` : s)
  .join('');

console.log(result)
document.write(result)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文