Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com> Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
43 lines
368 B
Markdown
43 lines
368 B
Markdown
---
|
|
id: 5e7b9f0b0b6c005b0e76f06e
|
|
title: Regular Expressions
|
|
challengeType: 11
|
|
videoId: Yud_COr6pZo
|
|
bilibiliIds:
|
|
aid: 759422542
|
|
bvid: BV1W64y167YD
|
|
cid: 376387549
|
|
dashedName: regular-expressions
|
|
---
|
|
|
|
# --question--
|
|
|
|
## --text--
|
|
|
|
Which regex matches only a white space character?
|
|
|
|
## --answers--
|
|
|
|
\\S
|
|
|
|
---
|
|
|
|
\\s
|
|
|
|
---
|
|
|
|
.
|
|
|
|
---
|
|
|
|
\_
|
|
|
|
---
|
|
|
|
\\.
|
|
|
|
## --video-solution--
|
|
|
|
2
|
|
|