vote up 3 vote down star
1

Is there any way to include */ in a C-style block comment? Changing the block comment to a series of line comments (//) is not an option in this case.

Here's an example of the sort of comment causing a problem:

/**
 * perl -pe 's/(?<=.{6}).*//g' : Limit to PID
 */
flag

In this particular example, there are of course many other ways of writing equivalent regular expressions or equivalent commands that wouldn't require that character combination. – Rob Kennedy May 13 at 21:23
@Reb Kennedy: You're correct, but it seems silly to modify the functionality just so that it will fit inside a comment. – Whatsit May 13 at 21:40
Thanks for asking this question; the accepted answer is a real eye-opener. – Cyberherbalist May 13 at 22:10
1  
Why is changing the block comment to a series of line comments not an option? – bk1e May 14 at 15:15
bk1e, hey u got a great idea i think. if / causes problems, then why not just close before the offending line, then do with "//" and then reintroduce / ... */ test – Johannes Schaub - litb May 14 at 15:54
show 1 more comment

5 Answers

vote up 20 vote down check

Usually comments don't need to be literal, so this doesn't come up too often.

You can wrap it all in a #if block:

#if 0
whatever you want can go here, comments or not
#endif
link|flag
Pretty sneaky! :-) – mquander May 13 at 21:19
1  
This seems like such an abuse of preprocessor commands, but it does get the job done. – Whatsit May 13 at 21:42
5  
It comes with the territory. C was made to be abused. – Mark Ransom May 13 at 21:45
Sneaky it may be, but this is extremely common! – Steve Melnikoff May 13 at 23:49
Common enough that some editors understand the notation and highlight everything between #if 0 and #endif as a comment. – Al May 14 at 12:35
show 1 more comment
vote up 10 vote down

Nope! There isn't.

link|flag
1  
Sometimes the simple answers are the best – JaredPar May 13 at 21:23
vote up 2 vote down

In the general case, you can't.

Here's a tricky answer that happens to work in this case:

/**
 * perl -pe 's/(?<=.{6}).* //gx' : Limit to PID
 */

This is (or should be, I didn't actually test the perl command) a regex that matches the same as the original because the x modifier allows whitespace to be used for clarity in the expression, which allows the * to be separated from the /.

You could use more whitespace, I've included just the single space that breaks the end of comment block token.

Some compilers support an option to turn on the non-standard feature of allowing nested comments. This is usually a bad idea, but in this particular case you could also do

/** 
 * /* perl -pe 's/(?<=.{6}).*//g' : Limit to PID
 */

with that option turned on for just this source file. Of course as demonstrated by the funky coloring in the above fragment, the rest of your tools may not know what you are up to and will make incorrect guesses.

link|flag
vote up 3 vote down

You can side-step the issue by munging your regex to not include the offending sequence of characters. From the looks of what you're doing, this should should work (make the * non-greedy):

/**
 * perl -pe 's/(?<=.{6}).*?//g' : Limit to PID
 */
link|flag
Is this C question going to turn into a JAPH session? ;-) – RBerteig May 13 at 21:47
+1 for another clever perl solution, by the way. – RBerteig May 13 at 21:47
vote up 0 vote down

For this specific case, you can change the delimiter on your perl regex. You can use any non-alphanumeric, non-whitespace delimiter. Here I switched to #:

/** 
 * perl -pe 's#(?<=.{6}).*##g' : Limit to PID
 */

Common choices are # and %.

'Bracketing characters' like parens or braces get a slightly different syntax, because they are expected to be matched pairs:

/** 
 * perl -pe 's[(?<=.{6}).*][]g' : Limit to PID
 */
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.