2018-09-15 Kotlin で HTML を テキストに変換する Android Kotlin public fun String.removehtmlTag(): String = this .replace(Regex("<[^>]*>"), "") .replace("\n", "")