문자열 리터럴 유형의 Typescript 개수 하위 문자열
방법은 다음과 같습니다.
type GetCountOfSubString<
String_ extends string,
SubString extends string,
Count extends unknown[] = []
> = String_ extends `${string}${SubString}${infer Tail}`
? GetCountOfSubString<Tail, SubString, [1, ...Count]>
: Count['length']
type NumberOfA = GetCountOfSubString<"a--a--aa--a","a"> // 5
playground
제한: TS 재귀의 최대 깊이가 1000이기 때문에 카운트는 999를 초과할 수 없습니다.
Reference
이 문제에 관하여(문자열 리터럴 유형의 Typescript 개수 하위 문자열), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/tylim88/typescript-count-substring-of-a-string-literal-type-536b텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)