1410:HTML 实体解析器

This commit is contained in:
huangge1199 2021-05-26 15:02:41 +08:00
parent 57bc705853
commit 813decd4f2
3 changed files with 153 additions and 1 deletions

View File

@ -0,0 +1,90 @@
//HTML 实体解析器 是一种特殊的解析器它将 HTML 代码作为输入并用字符本身替换掉所有这些特殊的字符实体
//
// HTML 里这些特殊字符和它们对应的字符实体包括
//
//
// 双引号字符实体为 " 对应的字符是 "
// 单引号字符实体为 ' 对应的字符是 '
// 与符号字符实体为 & 对应对的字符是 &
// 大于号字符实体为 > 对应的字符是 >
// 小于号字符实体为 &lt; 对应的字符是 <
// 斜线号字符实体为 &frasl; 对应的字符是 /
//
//
// 给你输入字符串 text 请你实现一个 HTML 实体解析器返回解析器解析后的结果
//
//
//
// 示例 1
//
//
//输入text = "&amp; is an HTML entity but &ambassador; is not."
//输出"& is an HTML entity but &ambassador; is not."
//解释解析器把字符实体 &amp; & 替换
//
//
// 示例 2
//
//
//输入text = "and I quote: &quot;...&quot;"
//输出"and I quote: \"...\""
//
//
// 示例 3
//
//
//输入text = "Stay home! Practice on Leetcode :)"
//输出"Stay home! Practice on Leetcode :)"
//
//
// 示例 4
//
//
//输入text = "x &gt; y &amp;&amp; x &lt; y is always false"
//输出"x > y && x < y is always false"
//
//
// 示例 5
//
//
//输入text = "leetcode.com&frasl;problemset&frasl;all"
//输出"leetcode.com/problemset/all"
//
//
//
//
// 提示
//
//
// 1 <= text.length <= 10^5
// 字符串可能包含 256 个ASCII 字符中的任意字符
//
// Related Topics 字符串
// 👍 12 👎 0
package leetcode.editor.cn;
import java.util.Stack;
//1410:HTML 实体解析器
public class HtmlEntityParser{
public static void main(String[] args) {
//测试代码
Solution solution = new HtmlEntityParser().new Solution();
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public String entityParser(String text) {
return text.
replace("&quot;", "\"").
replace("&apos;", "'").
replace("&gt;", ">").
replace("&lt;", "<").
replace("&frasl;", "/").
replace("&amp;", "&");
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

View File

@ -0,0 +1,62 @@
<p>「HTML&nbsp;实体解析器」 是一种特殊的解析器,它将 HTML 代码作为输入,并用字符本身替换掉所有这些特殊的字符实体。</p>
<p>HTML 里这些特殊字符和它们对应的字符实体包括:</p>
<ul>
<li><strong>双引号:</strong>字符实体为&nbsp;<code>&amp;quot;</code>&nbsp;,对应的字符是&nbsp;<code>&quot;</code>&nbsp;</li>
<li><strong>单引号:</strong>字符实体为&nbsp;<code>&amp;apos;</code>&nbsp;,对应的字符是&nbsp;<code>&#39;</code>&nbsp;</li>
<li><strong>与符号:</strong>字符实体为&nbsp;<code>&amp;amp;</code>&nbsp;,对应对的字符是&nbsp;<code>&amp;</code>&nbsp;</li>
<li><strong>大于号:</strong>字符实体为&nbsp;<code>&amp;gt;</code>&nbsp;,对应的字符是&nbsp;<code>&gt;</code>&nbsp;</li>
<li><strong>小于号:</strong>字符实体为&nbsp;<code>&amp;lt;</code>&nbsp;,对应的字符是&nbsp;<code>&lt;</code>&nbsp;</li>
<li><strong>斜线号:</strong>字符实体为&nbsp;<code>&amp;frasl;</code>&nbsp;,对应的字符是&nbsp;<code>/</code>&nbsp;</li>
</ul>
<p>给你输入字符串&nbsp;<code>text</code>&nbsp;,请你实现一个 HTML&nbsp;实体解析器,返回解析器解析后的结果。</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre>
<strong>输入:</strong>text = &quot;&amp;amp; is an HTML entity but &amp;ambassador; is not.&quot;
<strong>输出:</strong>&quot;&amp; is an HTML entity but &amp;ambassador; is not.&quot;
<strong>解释:</strong>解析器把字符实体 &amp;amp; 用 &amp; 替换
</pre>
<p><strong>示例&nbsp;2</strong></p>
<pre>
<strong>输入:</strong>text = &quot;and I quote: &amp;quot;...&amp;quot;&quot;
<strong>输出:</strong>&quot;and I quote: \&quot;...\&quot;&quot;
</pre>
<p><strong>示例 3</strong></p>
<pre>
<strong>输入:</strong>text = &quot;Stay home! Practice on Leetcode :)&quot;
<strong>输出:</strong>&quot;Stay home! Practice on Leetcode :)&quot;
</pre>
<p><strong>示例 4</strong></p>
<pre>
<strong>输入:</strong>text = &quot;x &amp;gt; y &amp;amp;&amp;amp; x &amp;lt; y is always false&quot;
<strong>输出:</strong>&quot;x &gt; y &amp;&amp; x &lt; y is always false&quot;
</pre>
<p><strong>示例 5</strong></p>
<pre>
<strong>输入:</strong>text = &quot;leetcode.com&amp;frasl;problemset&amp;frasl;all&quot;
<strong>输出:</strong>&quot;leetcode.com/problemset/all&quot;
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= text.length &lt;= 10^5</code></li>
<li>字符串可能包含 256 个ASCII 字符中的任意字符。</li>
</ul>
<div><div>Related Topics</div><div><li></li><li>字符串</li></div></div>\n<div><li>👍 12</li><li>👎 0</li></div>

File diff suppressed because one or more lines are too long