content = open(file, 'r:BOM|UTF-8') {|f| f.read}
ファイルを開く時の外部エンコーディング指定に BOM|
をつけると、自動的にBOMを取り除いてくれます。
Go to list of users who liked
More than 5 years have passed since last update.
content = open(file, 'r:BOM|UTF-8') {|f| f.read}
ファイルを開く時の外部エンコーディング指定に BOM|
をつけると、自動的にBOMを取り除いてくれます。
Register as a new user and use Qiita more conveniently
Go to list of users who liked