Kristofer Koishigawa b3213fc892 fix(i18n): chinese test suite (#38220)
* fix: Chinese test suite

Add localeTiltes, descriptions, and adjust test text and testStrings to get the automated test suite working.

* fix: ran script, updated testStrings and solutions
2020-03-03 18:49:47 +05:30

2.5 KiB
Raw Blame History

id, title, isRequired, challengeType, videoUrl, localeTitle
id title isRequired challengeType videoUrl localeTitle
a6b0bb188d873cb2c8729495 Convert HTML Entities true 5 转换HTML实体

Description

将字符串中的字符& < > " (双引号)和' 撇号转换为相应的HTML实体。如果卡住请记住使用Read-Search-Ask 。尝试配对程序。写下你的自己的代码。

Instructions

Tests

tests:
  - text: <code>convertHTML(&quot;Dolce &amp; Gabbana&quot;)</code>应该返回<code>Dolce &amp;amp; Gabbana</code> 。
    testString: assert.match(convertHTML("Dolce & Gabbana"), /Dolce &amp; Gabbana/);
  - text: <code>convertHTML(&quot;Hamburgers &lt; Pizza &lt; Tacos&quot;)</code>应该返回<code>Hamburgers &amp;lt; Pizza &amp;lt; Tacos</code> 。
    testString: assert.match(convertHTML("Hamburgers < Pizza < Tacos"), /Hamburgers &lt; Pizza &lt; Tacos/);
  - text: <code>convertHTML(&quot;Sixty &gt; twelve&quot;)</code>应返回<code>Sixty &amp;gt; twelve</code> 。
    testString: assert.match(convertHTML("Sixty > twelve"), /Sixty &gt; twelve/);
  - text: '<code>convertHTML(&#39;Stuff in &quot;quotation marks&quot;&#39;)</code>应该<code>convertHTML(&#39;Stuff in &quot;quotation marks&quot;&#39;)</code>返回<code>Stuff in &amp;quot;quotation marks&amp;quot;</code> 。'
    testString: assert.match(convertHTML('Stuff in "quotation marks"'), /Stuff in &quot;quotation marks&quot;/);
  - text: '<code>convertHTML(&quot;Schindler&#39;s List&quot;)</code>应该返回<code>Schindler&amp;apos;s List</code> 。'
    testString: assert.match(convertHTML("Schindler's List"), /Schindler&apos;s List/);
  - text: <code>convertHTML(&quot;&lt;&gt;&quot;)</code>应返回<code>&amp;lt;&amp;gt;</code> 。
    testString: assert.match(convertHTML('<>'), /&lt;&gt;/);
  - text: <code>convertHTML(&quot;abc&quot;)</code>应该返回<code>abc</code> 。
    testString: assert.strictEqual(convertHTML('abc'), 'abc');

Challenge Seed

function convertHTML(str) {
  // &colon;&rpar;
  return str;
}

convertHTML("Dolce & Gabbana");

Solution

// solution required