将字符串转换为化学式
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这只是 console.log() 的输出,因为它仍然只是一个字符串。如果您写入文档,它将加载到 DOM 中并呈现为 html。
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.