All Downloads are FREE. Search and download functionalities are using the official Maven repository.

main.net.joeaustin.easyxml.BaseXmlComponent.kt Maven / Gradle / Ivy

The newest version!
package net.joeaustin.easyxml

abstract class BaseXmlComponent : XmlComponent {

    protected fun escapeText(text: String): String {
        var escapedText = text

        escapedText = escapedText.replace("&", "&")
        escapedText = escapedText.replace("'", "'")
        escapedText = escapedText.replace("\"", """)
        escapedText = escapedText.replace("<", "<")
        escapedText = escapedText.replace(">", ">")

        return escapedText
    }

    protected fun normalizeKey(text: String): String {
        return text.replace(" ", "").trim()
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy