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:
" and symbol character is ".' and symbol character is '.& and symbol character is &.> and symbol character is >.< and symbol character 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 = "& 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:
1 <= text.length <= 105Solutions for this problem are being prepared.
Try solving it yourselfI HATE This Coding Question, but FAANG Loves it! | Majority Element - Leetcode 169 • Greg Hogg • 2,093,901 views views
Watch 9 more video solutions →Practice HTML Entity Parser with our built-in code editor and test cases.
Practice on FleetCode