正则周二挑战赛 - 第十二周

本周的挑战是一个比较容易的挑战。 在这,你必须修复一个句子或段落中的空白; 两个单词之间可能有多个空格或制表符。 你要做的是用正则修复空格,两个单词之间是一个空格,句号后是两个空格(提示,tab不会出现在句尾)。

在你输入正则之后,每个测试用例都会标注为是否通过,红色是未通过,绿色是通过,因为是基于 web 的,所以只能使用基于 JavaScript 传统型 NFA (Traditional NFA)正则引擎。它类似于PCRE,但有一些不同之处。

测试用例 (0/12)

This is already a valid sentence.
This is already a valid sentence.
Extra spaces
Extra spaces
Multiple extra spaces
Multiple extra spaces
Tab here
Tab here
Multiple tabs here
Multiple tabs here
Tab and spaces
Tab and spaces
Multiple tabs
Multiple tabs
Mixed whitespace
Mixed whitespace
Sentence. Sentence.
Sentence. Sentence.
Sentence with words. Sentence.
Sentence with words. Sentence.
The quick brown fox. Jumped.
The quick brown fox. Jumped.
There are 1.2 apples
There are 1.2 apples
恭喜,你的正则通过了所有测试用例,记住要分享这个挑战哦。