73 lines
2.0 KiB
HTML
73 lines
2.0 KiB
HTML
<div>
|
|
<h1>strings</h1>
|
|
<hr />
|
|
<p>
|
|
字符串操作工具类。
|
|
</p>
|
|
<h2>nullOrEmpty</h2>
|
|
<code>function nullOrEmpty(s?: string | any | null): boolean</code>
|
|
<h3>s?: string | any | null</h3>
|
|
<p>
|
|
待判断的对象,非字符串或者长度为 0 则返回 true
|
|
</p>
|
|
<h2>contains</h2>
|
|
<code>function contains(s: string, key: string | any, ignoreCase?: boolean): boolean</code>
|
|
<h3>s: string</h3>
|
|
<p>
|
|
待判断的字符串
|
|
</p>
|
|
<h3>key: string | any</h3>
|
|
<p>
|
|
检查字符串中是否含有该值,非字符串会先转换为字符串后再进行判断
|
|
</p>
|
|
<h3>ignoreCase?: boolean</h3>
|
|
<p>
|
|
判断时是否忽略大小写
|
|
</p>
|
|
<h2>endsWith</h2>
|
|
<code>function endsWith(s: string, suffix: string): boolean</code>
|
|
<h3>s: string</h3>
|
|
<p>
|
|
待判断的字符串
|
|
</p>
|
|
<h3>suffix: string</h3>
|
|
<p>
|
|
检查字符串是否以该字符串结尾
|
|
</p>
|
|
<h2>padStart</h2>
|
|
<code>function padStart(s: string, num: Number, char: string): boolean</code>
|
|
<h3>s: string</h3>
|
|
<p>
|
|
基础字符串
|
|
</p>
|
|
<h3>num: Number</h3>
|
|
<p>
|
|
对齐字符个数
|
|
</p>
|
|
<h3>char: string</h3>
|
|
<p>
|
|
用此字符串填充,使得字符串对齐,默认为 ' '
|
|
</p>
|
|
<h2>formatUrl</h2>
|
|
<code>function formatUrl(msg: string): string</code>
|
|
<h3>msg: string</h3>
|
|
<p>
|
|
把超链接解析替换为图标
|
|
</p>
|
|
<h2>escapeHtml</h2>
|
|
<code>function escapeHtml(text: string): string</code>
|
|
<h3>text: string</h3>
|
|
<p>
|
|
解析转换 html 代码为显示内容
|
|
</p>
|
|
<hr />
|
|
<h2>用法</h2>
|
|
<pre>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'</pre>
|
|
</div> |