I have a lot of lines with mark like
/* 1 */
/* 2 */
....
/* 1000 */
I want to replace them by comma. I came up with a simple regex to use on Notepadd++
\/(.*?)\/
Works fine, but sometimes some lines has txt like this and matches the regex when should not
de produtos / trazendo inputs qualitativos / estratégicos para a marca
------------^-------------------------------^----------------------
I am trying to use /* instead of just / but with no success!
Any suggestion?