本文简要介绍ruby语言中 Random::Formatter.choose
的用法。
用法
choose(source, n)
Random::Formatter#choose
生成一个从源字符数组中随机抽取的字符串。
参数source
指定从中生成字符串的字符数组。参数n
指定要生成的字符串的长度(以字符为单位)。
结果可能包含源数组中的任何字符。
require 'random/formatter'
prng.choose([*'l'..'r'], 16) #=> "lmrqpoonmmlqlron"
prng.choose([*'0'..'9'], 5) #=> "27309"
相关用法
- Ruby Formatter.random_bytes用法及代码示例
- Ruby Formatter.urlsafe_base64用法及代码示例
- Ruby Formatter.uuid用法及代码示例
- Ruby Formatter.base64用法及代码示例
- Ruby Formatter.hex用法及代码示例
- Ruby Formatter.alphanumeric用法及代码示例
- Ruby Formatter模块用法及代码示例
- Ruby Float arg()用法及代码示例
- Ruby File.identical?用法及代码示例
- Ruby Fiber.schedule用法及代码示例
- Ruby Float fdiv()用法及代码示例
- Ruby Float quo()用法及代码示例
- Ruby Float angle()用法及代码示例
- Ruby FileUtils.mkdir用法及代码示例
- Ruby Float divmod()用法及代码示例
- Ruby Float.self - other用法及代码示例
- Ruby Float.rationalize用法及代码示例
- Ruby Float.truncate用法及代码示例
- Ruby FileUtils.compare_file用法及代码示例
- Ruby FileUtils.options_of用法及代码示例
- Ruby File.dirname用法及代码示例
- Ruby Float prev_float()用法及代码示例
- Ruby FileUtils.ln_s用法及代码示例
- Ruby Float round()用法及代码示例
- Ruby Float denominator()用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Formatter.choose。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。