gpt4 book ai didi

javascript - 如何将以特定模式开头的每一行传输到字符串的末尾?

转载 作者:行者123 更新时间:2023-11-30 12:06:52 25 4
gpt4 key购买 nike

我有这样一个字符串:

var str = " this is a [link][1]
[1]: http://example.com
and this is a [good website][2] in my opinion
[2]: http://goodwebsite.com
[3]: http://example.com/fsadf.jpg
[![this is a photo][3]][3]
and there is some text hare ..! ";

现在我想要这个:

var newstr = "this is a [link][1]
and this is a [good website][2] in my opinion
[![this is a photo][3]][3]
and there is some text hare ..!


[1]: http://example.com
[2]: http://goodwebsite.com
[3]: http://example.com/fsadf.jpg"

我该怎么做?


实际上,那个变量 str 是一个 textarea 的值......我正在尝试创建一个 Markdown 编辑器......所以我想要的与 SO 的 textarea 所做的完全一样.


这是我的尝试:

/^(\[[0-9]*]:.*$)/g 选择 [any digit]: in the first of line

而且我认为我应该使用 () 为此创建一个组,然后将其替换为 \n\n $1

最佳答案

试试这个:

strLinksArray = str.match(/(\[\d+\]\:\s*[^\s\n]+)/g);
strWithoutLinks = str.replace(/(\[\d+\]\:\s*[^\s\n]+)/g, ''); //removed all links

在这里,您将获得没有链接的数组和字符串形式的链接,然后进行您想要的任何更改。

关于javascript - 如何将以特定模式开头的每一行传输到字符串的末尾?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34940641/

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