Skip to content

Instantly share code, notes, and snippets.

@othtim
Created June 16, 2017 19:06
Show Gist options
  • Select an option

  • Save othtim/21e05b7b239b96d2c50c4c8af274719d to your computer and use it in GitHub Desktop.

Select an option

Save othtim/21e05b7b239b96d2c50c4c8af274719d to your computer and use it in GitHub Desktop.
while (<>) {
$_ =~ s/\[\s+\d\]//g;
$_ =~ s/\s+/,/g ;
$_ =~ s/^,|,$//g;
print split(/\n/,$_);
print "\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment