gpt4 book ai didi

javascript - 替换所有以

转载 作者:行者123 更新时间:2023-12-04 16:11:40 26 4
gpt4 key购买 nike

如何替换以 #

开头的多行字符串中的所有行
str.replace(/^#([^\n]*)\n$/gm, '<h1>$1</h1>')

多行字符串

# headline
some text

# new headline
some more text

结果字符串

<h1>headline</h1>
some text

<h1>new headline</h1>
some more text

最佳答案

试试这个正则表达式 /^#(.*)$/mg 像这样

str.replace(/^#(.*)$/mg,"<h1>$1</h1")

关于javascript - 替换所有以,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20047814/

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