2021-02-06 04:42:36 +00:00
|
|
|
---
|
|
|
|
id: 5e7b9f0b0b6c005b0e76f06e
|
2022-03-11 22:52:40 +05:30
|
|
|
title: Expresiones regulares
|
2021-02-06 04:42:36 +00:00
|
|
|
challengeType: 11
|
|
|
|
videoId: Yud_COr6pZo
|
2022-03-11 22:52:40 +05:30
|
|
|
bilibiliIds:
|
|
|
|
aid: 759422542
|
|
|
|
bvid: BV1W64y167YD
|
|
|
|
cid: 376387549
|
2021-02-06 04:42:36 +00:00
|
|
|
dashedName: regular-expressions
|
|
|
|
---
|
|
|
|
|
|
|
|
# --question--
|
|
|
|
|
|
|
|
## --text--
|
|
|
|
|
2022-03-11 22:52:40 +05:30
|
|
|
¿Qué regex coincide sólo con un carácter de espacio en blanco?
|
2021-02-06 04:42:36 +00:00
|
|
|
|
|
|
|
## --answers--
|
|
|
|
|
|
|
|
\\S
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
\\s
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
.
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
\_
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
\\.
|
|
|
|
|
|
|
|
## --video-solution--
|
|
|
|
|
|
|
|
2
|
|
|
|
|