I'm struggling to mach everything inside a PHP comment block using RegExr.
i.e.
/**
* MATCH EVETHING HERE
*/
So basically, I want to match everything starting straight after /**
and ending straight before */
.
Can someone please provide me with the appropriate RegExr for that.
Thanks in advance
EDIT: solved, its /\/\/*/*(.*?)*//s