Hello
I'm trying to match C style comments form a file, but only if the comment don't start with a certain labels introduced by @
For example from
/* some comment to match */
/* another comment.
this should match also */
/*@special shouldn't match*/
Is this possible using regular expressions only?
I'm trying this using JavaScript implementation of regular expressions.