为了账号安全,请及时绑定邮箱和手机立即绑定

正则表达式-提取方括号标记之间的字符串

正则表达式-提取方括号标记之间的字符串

PHP
慕尼黑的夜晚无繁华 2021-05-12 13:15:03
我已经在字符串中添加了标签,就像[note]some text[/note]我想在标签之间提取内部文本的位置一样。示例文本:Want to extract data [note]This is the text I want to extract[/note] but this is not only tag [note]Another text I want to [text:sample] extract[/note]. Can you do it?从给定的文本中,提取以下内容:This is the text I want to extractAnother text I want to [text:sample] extract
查看完整描述

2 回答

?
胡说叔叔

TA贡献1804条经验 获得超8个赞

我们可以尝试使用以下正则表达式模式进行匹配:


\[note\]([\s\S]*?)\[\/note\]

这表示仅捕获介于中间的[note]和最接近的结束[/note]标记之间的所有内容。请注意[\s\S]*,如果有必要,我们通常会在换行符之间匹配所需的内容。


var re = /\[note\]([\s\S]*?)\[\/note\]/g;

var s = 'Want to extract data [note]This is the text I want to extract[/note]\nbut this is not only tag [note]Another text I want to [text:sample]\n extract[/note]. Can you do it?';

var m;


do {

    m = re.exec(s);

    if (m) {

        console.log(m[1]);

    }

} while (m);


查看完整回答
反对 回复 2021-05-28
  • 2 回答
  • 0 关注
  • 172 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信