LeetCode in Kotlin

1410. HTML Entity Parser

Medium

HTML entity parser is the parser that takes HTML code as input and replace all the entities of the special characters by the characters itself.

The special characters and their entities for HTML are:

Given the input text string to the HTML parser, you have to implement the entity parser.

Return the text after replacing the entities by the special characters.

Example 1:

Input: text = “& is an HTML entity but &ambassador; is not.”

Output: “& is an HTML entity but &ambassador; is not.”

Explanation: The parser will replace the & entity by &

Example 2:

Input: text = “and I quote: "…"”

Output: “and I quote: \“…\””

Constraints:

Solution

class Solution {
    fun entityParser(text: String): String {
        val map: MutableMap<String, String> = HashMap()
        map["&quot;"] = "\""
        map["&apos;"] = "'"
        map["&amp;"] = "&"
        map["&gt;"] = ">"
        map["&lt;"] = "<"
        map["&frasl;"] = "/"
        val n = text.length
        val sb = StringBuilder()
        var i = 0
        while (i < n) {
            val c = text[i]
            if (c == '&') {
                val index = text.indexOf(";", i)
                if (index >= 0) {
                    val pattern = text.substring(i, index + 1)
                    if (map.containsKey(pattern)) {
                        sb.append(map[pattern])
                        i += pattern.length
                        continue
                    }
                }
            }
            sb.append(c)
            i++
        }
        return sb.toString()
    }
}
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy