くうと徒然なるままに
id:kuxumarin
Kotlin で HTML を テキストに変換する
public fun String.removehtmlTag(): String = this .replace(Regex("<[^>]*>"), "") .replace("\n", "")