logo

Todash 2.4.0

是一个 类型推导 工具库,旨在帮助你快速方便的编写具备类型推导的 TypeScript 代码。


“String” 方法


_.StringStartsWith<str, searchStr>

用来判断当前字符串是否以另外一个给定的子字符串开头


参数


str (string): 被搜索的当前字符串
searchStr (string): 要搜索的子字符串


返回


string: 符合条件返回 当前字符串 反之 never


例子


type ValidString = _.StringStartsWith<'VueReactAngular', 'Vue'>;
// => 'VueReactAngular'

type ValidString = _.StringStartsWith<'VueReactAngular', 'React'>;
// => never