Home > @ailer/pocket > substringBytes
substringBytes() function
根据字节数,截取字符串
Signature:
typescript
substringBytes: (str: string | undefined, start: number, end?: number) => string
Parameters
Parameter | Type | Description |
---|---|---|
str | string | undefined | 目标字符串 |
start | number | 开始位置 |
end | number | (Optional) 结束位置,默认为字符串的字节数 |
string
Example 1
// Returns 'hell' substringBytes('hello, 世界!', 0, 4);
Example 2
// Returns 'hello, 世界!' substringBytes('hello, 世界!', 0);