zoukankan      html  css  js  c++  java
  • 1410. HTML Entity Parser

    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 &lt; and symbol character is <.
    • Slash: the entity is &frasl; 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: "...""
    

    Example 3:

    Input: text = "Stay home! Practice on Leetcode :)"
    Output: "Stay home! Practice on Leetcode :)"
    

    Example 4:

    Input: text = "x &gt; y &amp;&amp; x &lt; y is always false"
    Output: "x > y && x < y is always false"
    

    Example 5:

    Input: text = "leetcode.com&frasl;problemset&frasl;all"
    Output: "leetcode.com/problemset/all"
    

    Constraints:

    • 1 <= text.length <= 10^5
    • The string may contain any possible characters out of all the 256 ASCII characters.
       public String entityParser(String text) {
            StringBuilder sb=new StringBuilder(), cur=new StringBuilder();
            Map<String, String> dic=new HashMap<>();
            dic.put("&quot;", """);
            dic.put("&apos;", "'");
            dic.put("&amp;", "&");
            dic.put("&gt;", ">");
            dic.put("&lt;", "<");
            dic.put("&frasl;", "/");
            char[] txt=text.toCharArray();
            for(int i=0;i<txt.length;i++) {
                if(txt[i]=='&') {
                    sb.append(cur);
                    cur.setLength(0);
                    cur.append("&");
                }
                else if(txt[i]==';') {
                    cur.append(";");
                    String s=cur.toString();
                    if(dic.containsKey(s)) sb.append(dic.get(s));
                    else sb.append(cur);
                    cur.setLength(0);
                }
                else cur.append(txt[i]);
            }
            return sb.append(cur).toString();
        }
  • 相关阅读:
    Hibernate4学习day0--hibernate封装--注解--单元测试
    Hibernate4学习day01--简介--基本配置
    java基础day13---引用数据类型
    java基础day14---static关键字-----继承
    java基础day12---this 关键字-----参数传递
    day05 Struts2文件上传和下载---防重复提交
    java基础day11---空指针异常----引用类型--自定义类型赋值--封装
    java基础的第二轮快速学习!day10
    Struts2,大爷你好!第四天
    java基础的第二轮快速学习!day09
  • 原文地址:https://www.cnblogs.com/wentiliangkaihua/p/13097281.html
Copyright © 2011-2022 走看看