I need a regular expression that matches a substring in string /*exa*/mple*/
,
the matched string must be /*exa*/
not /*exa*/mple*/
.
It also must not contain "*/"
in it.
I have tried these regex:
"/\\*[.*&&[^*/]]\\*/"
,"/\\*.*&&(?!^*/$)\\*/"
but im not able to get the exact solution.