Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 1.79 KB

File metadata and controls

12 lines (7 loc) · 1.79 KB

ReplaceAll 보통 #template-literal

by Anthony Fu @antfu

도전하기    English 简体中文 日本語

주어진 문자열 S에서 부분 문자열 From을 찾아 모두 To로 교체하는 제네릭 ReplaceAll<S, From, To>을 구현하세요.

예시:

type replaced = ReplaceAll<'t y p e s', ' ', ''> // expected to be 'types'

돌아가기 정답 공유하기 정답 보기