hey guys, for android we have ```actual fun decod...
# compose-ios
h
hey guys, for android we have
Copy code
actual fun decodeHtml(html: String): String =
    HtmlCompat.fromHtml(html, HtmlCompat.FROM_HTML_MODE_COMPACT).toString()
what’s the equivalent for iOS?
plus one 1
f
h
for iOS, WASM and JVM i’ve used regex
_val_ String.removeHTMLUsingRegex _get_() = replace("<[^>]*>".toRegex(),"")
since my use case is really simple, otherwise this library looks good, thanks for sharing
👍 1