Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re: how do I print content of a cpp file without cpp comments?

by rir (Vicar)
on Sep 19, 2006 at 20:46 UTC ( [id://573809]=note: print w/replies, xml ) Need Help??


in reply to how do I print content of a cpp file without cpp comments?

I did this once long ago in C. Nibble through your file char by char and change state at the appropriate events. You need to track states like: directive, code, comment, comment_plus, string_literal, char_literal, directive_string, and directive_angle_string (system lib names). You also need to track if you are at the start_of_line, and would need to look ahead a char on occasion and deal with escapes.

As I recall the compilation sequence of trigraphs, preprocessing, and processing did not have any real impact. I just bailed on trigraphs; I have still never seen a live one. Trigraphs may be non-events for your purpose, I had not considered that on my first go-round.

The Right-Thing is to replace a comment with a single space.

Be well,
rir

  • Comment on Re: how do I print content of a cpp file without cpp comments?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://573809]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (4)
As of 2024-04-24 21:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found