Skip to content
On this page

Home > @taiyuuki/utils > str_random

str_random() function

该函数生成指定长度和基数的随机字符串。

Signature:

typescript
declare function str_random(count: number, radix?: number): string;
declare function str_random(count: number, radix?: number): string;

Parameters

ParameterTypeDescription
countnumber将生成的随机字符串中的字符数。
radixnumber(Optional) Radix 是指用于随机字符串生成的基数系统。默认值为 16,这意味着字符串将使用十六进制数字(0-9 和 A-F)生成。但是,可以将基数设置为 2 到 36 之间的任何值以使用

Returns:

string

具有指定长度和基数(基数)的随机生成的字符串。 radix 是可选的,如果未提供则默认为 16。

Released under the MIT License.