Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

[신규 번역] Part9. 9.6 과제 번역#1653

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Open
choeunlee wants to merge1 commit intojavascript-tutorial:master
base:master
Choose a base branch
Loading
fromchoeunlee:9.6assingnment
Open
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@

The answer: `pattern:\b\d\d:\d\d\b`.
정답: `pattern:\b\d\d:\d\d\b`.

```js run
alert("Breakfast at 09:00 in the room 123:456.".match(/\b\d\d:\d\d\b/ )); // 09:00
alert("Breakfast at 09:00 in the room 123:456.".match(/\b\d\d:\d\d\b/)); // 09:00
```
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
#Find the time
#시간 찾기

The time has a format: `hours:minutes`.Both hours and minutes has two digits, like`09:00`.
시간은 형식을 가집니다: `hours:minutes`.시간과 분은 모두`09:00`과 같이 두 자릿수를 가집니다.

Make a regexp to find time in the string: `subject:Breakfast at 09:00 in the room 123:456.`
문자열 내에서 시간을 찾기 위해 정규 표현식을 만들어보세요: `subject:Breakfast at 09:00 in the room 123:456.`

P.S.In this task there's no need to check time correctness yet, so `25:99` can also be a valid result.
P.S.이 과제에서는 아직 시간 정확도를 확인할 필요가 없습니다, 따라서 `25:99`도 유효한 결과가 될 수 있습니다.

P.P.S.The regexp shouldn't match`123:456`.
P.P.S.정규 표현식은`123:456` 과 같지 않아야 합니다.

[8]ページ先頭

©2009-2025 Movatter.jp