我正在尝试在两个模式之间提取一个子字符串,BB
并且</p>
:
require("stringr")
str = "<notes>\n <p>AA:</p>\n <p>BB: word, otherword</p>\n <p>Number:</p>\n <p>Level: 1</p>\n"
str_extract(str, "BB.*?:</p>")
提取的子字符串应该是“word, otherword”,但我捕获的太多了:
[1] "BB: word, otherword</p>\n <p>Number:</p>"