
commonMain.dev.inmo.tgbotapi.utils.StringFileExtension.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tgbotapi.core-jvm Show documentation
Show all versions of tgbotapi.core-jvm Show documentation
Core part of tgbotapi with all (and only) required functionality for working with Telegram Bot API
package dev.inmo.tgbotapi.utils
private val filenameRegex = Regex("[^/]*$")
private val extensionRegex = Regex("[^.]*$")
/**
* File name like hello.jpg
*/
typealias FileName = String
val String.filenameFromUrl: FileName
get() = filenameRegex.find(this) ?.value ?: ""
val String.fileExtension
get() = extensionRegex.find(this) ?.value ?: ""
© 2015 - 2025 Weber Informatics LLC | Privacy Policy