字符串模板
type S1 = StrTemplate<'1%s3', ['2']>; // 123type S2 = StrTemplate<'%s23', ['1']>; // 123type S3 = StrTemplate<'123', ['1']>; // 123type SW = StrTemplate<'a%sc%se', ['b', 'd']>; // abcdetype SW2 = StrTemplate<'a%sc%se', ['b', 'd', 'f']>; // abcdetype S5 = StrTemplate<'hell%s worl%s'> // hell worl
字符串模板
Example