Skip to content

Instantly share code, notes, and snippets.

@yamasushi
Last active January 11, 2016 02:55
Show Gist options
  • Save yamasushi/311c5c424356abf645a2 to your computer and use it in GitHub Desktop.
Save yamasushi/311c5c424356abf645a2 to your computer and use it in GitHub Desktop.
#!/usr/bin/perl
# https://gist.github.com/yamasushi/311c5c424356abf645a2
use strict;
use warnings;
use utf8;
binmode STDIN,":utf8";
binmode STDOUT,":utf8";
while(<>){
chomp;
s/[^\p{Han}\p{Hiragana}\p{Katakana}~〜ー、…!!??,,。]+//g;
if(/^.*[^!!??。]$/){
$_ = $_ . "、"
}
s/[.・~〜]+/…/g;
s/[!!??,,。]/、/g;
s/^、//g;
s/[、…][、…]+$/……/g;
print $_;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment