Skip to content

Latest commit

 

History

History
42 lines (36 loc) · 1.47 KB

1410_html_entity_parser.md

File metadata and controls

42 lines (36 loc) · 1.47 KB

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:

  • Quotation Mark: the entity is " and symbol character is ".
  • Single Quote Mark: the entity is ' and symbol character is '.
  • Ampersand: the entity is & and symbol character is &.
  • Greater Than Sign: the entity is > and symbol character is >.
  • Less Than Sign: the entity is < and symbol character is <.
  • Slash: the entity is ⁄ and symbol character is /.

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 = "&amp; is an HTML entity but &ambassador; is not."
Output: "& is an HTML entity but &ambassador; is not."
Explanation: The parser will replace the &amp; entity by &

Example 2:

Input: text = "and I quote: &quot;...&quot;"
Output: "and I quote: \"...\""

Solution

class Solution:
    def entityParser(self, text: str) -> str:
        dic = {'&apos;': "'",
               '&gt;': '>',
               '&lt;': '<',
               '&frasl;': '/'}
        for key, value in dic.items():
            text = text.replace(key, value)
        text = text.replace('&amp;', '&')
        text = text.replace('&quot;', '"')
        return text