method
extension_with_delimiter
v7.1.3.4 -
Show latest stable
- Class:
ActiveStorage::Filename
extension_with_delimiter()public
Returns the extension of the filename (i.e. the substring following the last dot, excluding a dot at the beginning) with the dot that precedes it. If the filename has no extension, an empty string is returned.
ActiveStorage::Filename.new("racecar.jpg").extension_with_delimiter # => ".jpg" ActiveStorage::Filename.new("racecar").extension_with_delimiter # => "" ActiveStorage::Filename.new(".gitignore").extension_with_delimiter # => ""