ContentTextDecoder

QQ频道内嵌格式解码器。

用于将转义后字符解码为源字符

源字符转义后
&<-&amp;
<<-&lt;
><-&gt;

Functions

Link copied to clipboard
fun decode(format: String): String

format 中的被转义的内容解码为源字符

Link copied to clipboard
fun <A : Appendable> decodeTo(format: CharSequence, startIndex: Int, endIndex: Int, appendable: A): A

format 中的被转义的内容解码为源字符,并追加到 appendable 中。