* fix: broken Read-search-ask link now point to correct url * fix: changed link to original forum link with more views * fix: changed http links to correct version * fix: link in help modal
3.2 KiB
3.2 KiB
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("Dolce & Gabbana")</code>应该返回<code>Dolce &amp; Gabbana</code> 。
testString: 'assert.match(convertHTML("Dolce & Gabbana"), /Dolce & Gabbana/, "<code>convertHTML("Dolce & Gabbana")</code> should return <code>Dolce & Gabbana</code>.");'
- text: <code>convertHTML("Hamburgers < Pizza < Tacos")</code>应该返回<code>Hamburgers &lt; Pizza &lt; Tacos</code> 。
testString: 'assert.match(convertHTML("Hamburgers < Pizza < Tacos"), /Hamburgers < Pizza < Tacos/, "<code>convertHTML("Hamburgers < Pizza < Tacos")</code> should return <code>Hamburgers < Pizza < Tacos</code>.");'
- text: <code>convertHTML("Sixty > twelve")</code>应返回<code>Sixty &gt; twelve</code> 。
testString: 'assert.match(convertHTML("Sixty > twelve"), /Sixty > twelve/, "<code>convertHTML("Sixty > twelve")</code> should return <code>Sixty > twelve</code>.");'
- text: '<code>convertHTML('Stuff in "quotation marks"')</code>应该<code>convertHTML('Stuff in "quotation marks"')</code>返回<code>Stuff in &quot;quotation marks&quot;</code> 。'
testString: 'assert.match(convertHTML("Stuff in "quotation marks""), /Stuff in "quotation marks"/, "<code>convertHTML('Stuff in "quotation marks"')</code> should return <code>Stuff in "quotation marks"</code>.");'
- text: '<code>convertHTML("Schindler's List")</code>应该返回<code>Schindler&apos;s List</code> 。'
testString: 'assert.match(convertHTML("Schindler"s List"), /Schindler's List/, "<code>convertHTML("Schindler's List")</code> should return <code>Schindler's List</code>.");'
- text: <code>convertHTML("<>")</code>应返回<code>&lt;&gt;</code> 。
testString: 'assert.match(convertHTML("<>"), /<>/, "<code>convertHTML("<>")</code> should return <code><></code>.");'
- text: <code>convertHTML("abc")</code>应该返回<code>abc</code> 。
testString: 'assert.strictEqual(convertHTML("abc"), "abc", "<code>convertHTML("abc")</code> should return <code>abc</code>.");'
Challenge Seed
function convertHTML(str) {
// :)
return str;
}
convertHTML("Dolce & Gabbana");
Solution
// solution required