gpt4 book ai didi

javascript - jQuery - 替换 MyBB 消息但不是其中的一部分

转载 作者:行者123 更新时间:2023-11-30 17:32:22 25 4
gpt4 key购买 nike

我正在尝试替换一些文本。如果您继续阅读,这将是有意义的。

[quote]Here is a message[/quote]
Message one

[quote]Another message[/quote]
Message two

以上是我的 textarea 中的内容。我想替换除引号标签内的所有内容。我想像 [b]Message one[/b] 那样替换它们,因此它会在原始信息。最终结果应该是这样的:

[quote]Here is a message[/quote]
[b]Message one[/b]

[quote]Another message[/quote]
[b]Message two[/b]

所以基本上排除 [quote] 并在原始消息周围应用 [b] 和 [/b]。我尝试了一些排除正则表达式,但没有发现任何有用的东西。

最佳答案

试试这个:

var string = "Replace this[quote]Here is a message[/quote]\nReplace this\n\n[quote]Another message[/quote]\nReplace this as well";
string.replace(/(\[\/quote\]\s*|^)([^[]+?)(\s*\[quote|$)/g, "$1[b]$2[/b]$3");

///// And we get:
// [b]Replace this[/b][quote]Here is a message[/quote]
// [b]Replace this[/b]
//
// [quote]Another message[/quote]
// [b]Replace this as well[/b]

参见 jsFiddle

关于javascript - jQuery - 替换 MyBB 消息但不是其中的一部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22747563/

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