■EUCに変換する
		■書式
			
			require "kconv"
			
			
			文字列.toeuc
			
			Kconv::toeuc(文字列)
			■説明
			
			EUCに変換するには文字列.toeucを使います。また、Kconv::toeuc(文字列)、Kconv::(文字列, Kconv::EUC)という指定もできます。
			■サンプル
			
			#!/usr/bin/ruby
			require "kconv"
			
			fh = open("sjis.txt","r")
			txt = fh.read
			fh.close
			
			fh = open("result.txt","w")
			fh.print txt.toeuc
			fh.close
		
			■サンプル
			
			#!/usr/bin/ruby
			require "kconv"
			
			fh = open("sjis.txt","r")
			txt = fh.read
			fh.close
			
			fh = open("result.txt","w")
			fh.print Kconv::toeuc(txt)
			fh.close