Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Railsでファイル拡張子名を取得するときにドットを付けるにはどうすればよいですか?
現在、私は使用してFile.extnameいますが、「。」を保持しています。名前を付ける前に
File.extname
これはうまくいきますか?
File.extname('something.jpg').delete('.') #=> 'jpg'
ヘルパーでラップすることもできます:
def file_extension(filename) File.extname(filename).delete('.') end file_extension('something.jpg') #=> 'jpg'