Notepad++ obviously recognizes all comments as such. Is there a way to simply delete all?
Edit: Stat-R\'s bookmark method has helped greatly, not on
In the Find & Replace Dialog, put the following regex and adjust the search options as depicted.
/\*.*?\*/
Replace with: (empty)
Select Mode: Regular Expression AND .(dot) matches newline
This should remove all your C style comments spanned across lines.