Skip to content

Instantly share code, notes, and snippets.

@hitode909
Created September 3, 2011 13:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hitode909/1191177 to your computer and use it in GitHub Desktop.
Save hitode909/1191177 to your computer and use it in GitHub Desktop.
句読点を切り替えるコマンド
#! /usr/bin/env ruby
# -*- coding: utf-8 -*-
input = ARGF.read
if input =~ /、|。/
puts input.gsub(/、/, ',').gsub(/。/, '.')
else
puts input.gsub(/,/, '、').gsub(/./, '。')
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment