strings


字符串操作工具类。

nullOrEmpty

function nullOrEmpty(s?: string | any | null): boolean

s?: string | any | null

待判断的对象,非字符串或者长度为 0 则返回 true

contains

function contains(s: string, key: string | any, ignoreCase?: boolean): boolean

s: string

待判断的字符串

key: string | any

检查字符串中是否含有该值,非字符串会先转换为字符串后再进行判断

ignoreCase?: boolean

判断时是否忽略大小写

endsWith

function endsWith(s: string, suffix: string): boolean

s: string

待判断的字符串

suffix: string

检查字符串是否以该字符串结尾

padStart

function padStart(s: string, num: Number, char: string): boolean

s: string

基础字符串

num: Number

对齐字符个数

char: string

用此字符串填充,使得字符串对齐,默认为 ' '


用法

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'