中国优质的IT技术网站
专业IT技术创作平台
IT职业在线教育平台
检查字符串是否以给定的字符串结尾
微信扫码分享
/** * 检查字符串是否以给定的字符串结尾 * @param str 要检索的字符串 * @param target 要检索字符 * @param position 检索的位置 * @returns 如果字符串以字符串结尾,那么返回 true,否则返回 false */ static endsWith(str: string = '', target: string, position: number = str.length): boolean { return str.endsWith(target, position); }