Get filename without extension
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://hashaam.com/2017/09/02/get-filename-without-extension | |
let path = "hls_a128_v4.m3u8" | |
let url = URL(string: path) | |
let filename = url?.deletingPathExtension().lastPathComponent | |
print(filename) // hls_a128_v4 | |
let fileExtension = url?.pathExtension | |
print(fileExtension) // m3u8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This fails if the filename contains spaces