is there method in kotlin that allows to unescape html chars? E.g convert ' -> ' , & as &(ampersand), % as % and so on
o
Olivier
11/19/2018, 2:31 PM
Escaping aims for a specific purpose. Here you need to escape for HTML, but someone else will escape for SQL, and someone else for another platform, and so on.
I don't think Kotlin will offer escaping for every systems 🙂