在标签regex javascript之间获取文本

时间:2016-05-17 10:25:54

标签: javascript regex

我正在尝试在两个标签之间获取文本,这两个标签也可以处理多行。我已经设法在PHP正则表达式中进行了操作,但我仍然坚持使用javascript文件。

   <any_tag>random text
   dffdffdfdfdfdfdfdfd
   dfdfdfdfdfdfdfdfdf
   </any_tag>
   I want to get the text between <any_tag> and </any_tag>

这是php的正则表达式        https://regex101.com/r/tQ1bX7/2

现在我想在javascript中实现相同的目标

1 个答案:

答案 0 :(得分:-1)

试试以下内容:

ExecutorService

Explination:

/[^(<any_tag>)](?:.*(\r?\n?).*)*(?=\<\/any_tag\>)/gi