标签: regex
我有一个这样的多行字符串:
@some text"> blabla bla bla"> @some te xt">
我想获取以@开头和以">结尾的字符串中的匹配项, 像这样:
@
">
匹配1:
@some text">
匹配2:
@some te xt">
答案 0 :(得分:0)
真实答案:
\@\h*(?s)(.+?)(?=\">|\z)">
在101regex中进行检查。