strip.pl 114 B

123456
  1. #!/usr/bin/perl
  2. while(<>) {
  3. s/SWITCH_DECLARE_CONSTRUCTOR//g;
  4. s/SWITCH_DECLARE[^\(]*\((.*?)\)/$1/g;
  5. print;
  6. }