字符串操作工具类。
function nullOrEmpty(s?: string | any | null): boolean
待判断的对象,非字符串或者长度为 0 则返回 true
function contains(s: string, key: string | any, ignoreCase?: boolean): boolean
待判断的字符串
检查字符串中是否含有该值,非字符串会先转换为字符串后再进行判断
判断时是否忽略大小写
function endsWith(s: string, suffix: string): boolean
待判断的字符串
检查字符串是否以该字符串结尾
function padStart(s: string, num: Number, char: string): boolean
基础字符串
对齐字符个数
用此字符串填充,使得字符串对齐,默认为 ' '
const util = window["lib-utility"]; let s = 'test string'; console.log(util.nullOrEmpty(s)); // false console.log(util.contains(s, 'abc')); // true console.log(util.endsWith(s, 'string')); // true s = util.padStart(s, 16, '0'); // '00000test string'