我有这样的文字:
hello world /* select a from table_b
*/ some other text with new line cha
racter and there are some blocks of
/* any string */ select this part on
ly
////RESULT rest string
文本是多行的,我需要从最后一次出现的“*/”中提取直到“////RESULT”。在这种情况下,结果应该是:
select this part on
ly
如何在 perl 中实现这一点?
我已经尝试过\\\*/(.|\n)*////RESULT
,但这将从第一个“*/”开始