With the intent to match multiline comments, I found the following regex:
(?:/\*(?:(?:[^*]|\*(?!/))*)\*/)
It is described here. It isn't perfect (it matches comments inside strings), but it works well enough for my purpose. However, it does not work in Notepad++. I tried escaping different things, but with no better results.
Does anyone know how to make this regex work in Notepad++?