Have a look at PPI::Document, too:
#!/usr/bin/perl use strict; use warnings; # Straight from the documention use PPI; # Load a document from a file my $Document = PPI::Document->new('My/Module.pm'); # Strip out comments $Document->prune('PPI::Token::Comment'); # Strip out Pod $Document->prune('PPI::Token::Pod'); # Save the file $Document->save('My/Module.pm.stripped');
Hth, Thomas
Udate: Added code to strip Pod
In reply to Re^4: Stripping Comments from Source
by tomfahle
in thread Stripping Comments from Source
by Kob
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |