Companion

object Companion
object Companion
object Companion

Extensions

Link copied to clipboard
inline fun String.Companion.format(format: String, vararg args: Any?): String
inline fun String.Companion.format(format: String, vararg args: Any?): String
inline fun String.Companion.format(format: String, vararg args: Any?): String

Uses the provided format as a format string and returns a string obtained by substituting the specified arguments, using the default locale.

inline fun String.Companion.format(    locale: Locale,     format: String,     vararg args: Any?): String
inline fun String.Companion.format(    locale: Locale,     format: String,     vararg args: Any?): String
inline fun String.Companion.format(    locale: Locale,     format: String,     vararg args: Any?): String

Uses the provided format as a format string and returns a string obtained by substituting the specified arguments, using the specified locale.

@JvmName(name = "formatNullable")
inline fun String.Companion.format(    locale: Locale?,     format: String,     vararg args: Any?): String
@JvmName(name = "formatNullable")
inline fun String.Companion.format(    locale: Locale?,     format: String,     vararg args: Any?): String
@JvmName(name = "formatNullable")
inline fun String.Companion.format(    locale: Locale?,     format: String,     vararg args: Any?): String

Uses the provided format as a format string and returns a string obtained by substituting the specified arguments, using the specified locale. If locale is null then no localization is applied.