Faire correspondre la dernière occurrence en utilisant regex en perl

J'ai un texte comme ceci:

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

Le texte est multilined et j'ai besoin d'extraire de la dernière occurrence de "*/" jusqu'à ce que "////RÉSULTAT". Dans ce cas, le résultat devrait être:

 select this part on
ly 

Comment atteindre cet objectif en perl?

J'ai tenté \\\*/(.|\n)*////RESULT mais qui va commencer à partir de la première "*/"

source d'informationauteur Peiti Peter Li | 2013-01-02