ZhichengChen 2fdc5267e3
fix(i18n): update Chinese translation of regular expressions (#38042)
Co-authored-by: Zhicheng Chen <chenzhicheng@dayuwuxian.com>
2020-08-04 12:44:01 +05:30

2.0 KiB
Raw Blame History

id, title, challengeType, forumTopicId, localeTitle
id title challengeType forumTopicId localeTitle
587d7db5367417b2b2512b96 Match Letters of the Alphabet 1 301354 匹配字母表中的字母

Description

了解了如何使用字符集来指定要匹配的一组字符串,但是当需要匹配大量字符(例如,字母表中的每个字母)时,有一种写法可以让实现这个功能变得简短。 在字符集中,可以使用连字符-)来定义要匹配的字符范围。 例如,要匹配小写字母ae,你可以使用[a-e]
let catStr = "cat";
let batStr = "bat";
let matStr = "mat";
let bgRegex = /[a-e]at/;
catStr.match(bgRegex); // Returns ["cat"]
batStr.match(bgRegex); // Returns ["bat"]
matStr.match(bgRegex); // Returns null

Instructions

匹配字符串quoteSample中的所有字母。 注意:
一定要同时匹配大小写字母

Tests

tests:
  - text: 你的正则表达式<code>alphabetRegex</code>应该匹配 35 项。
    testString: assert(result.length == 35);
  - text: 你的正则表达式<code>alphabetRegex</code>应该使用全局标志。
    testString: assert(alphabetRegex.flags.match(/g/).length == 1);
  - text: 你的正则表达式<code>alphabetRegex</code>应该使用忽略大小写标志。
    testString: assert(alphabetRegex.flags.match(/i/).length == 1);

Challenge Seed

let quoteSample = "The quick brown fox jumps over the lazy dog.";
let alphabetRegex = /change/; // Change this line
let result = alphabetRegex; // Change this line

Solution

let quoteSample = "The quick brown fox jumps over the lazy dog.";
let alphabetRegex = /[a-z]/gi; // Change this line
let result = quoteSample.match(alphabetRegex); // Change this line