本文简要介绍ruby语言中 Random::Formatter.urlsafe_base64
的用法。
用法
urlsafe_base64(n=nil, padding=false)
Random::Formatter#urlsafe_base64
生成随机 URL-safe base64 字符串。
参数n
指定要生成的随机数的长度(以字节为单位)。结果字符串的长度约为 n
的 4/3。
如果 n
未指定或为零,则假定为 16。未来可能会更大。
布尔参数 padding
指定填充。如果为 false 或 nil,则不会生成填充。否则会生成填充。默认情况下,不会生成填充,因为 “=” 可能用作 URL 分隔符。
结果可能包含A-Z、a-z、0-9、“-”和“_”。如果padding
为真,也使用“=”。
require 'random/formatter'
prng.urlsafe_base64 #=> "b4GOKm4pOYU_-BOXcrUGDg"
prng.urlsafe_base64 #=> "UZLdOkzop70Ddx-IJR0ABg"
prng.urlsafe_base64(nil, true) #=> "i0XQ-7gglIsHGV2_BNPrdQ=="
prng.urlsafe_base64(nil, true) #=> "-M8rLhr7JEpJlqFGUMmOxg=="
有关URL-safe base64 的定义,请参见 RFC 3548。
相关用法
- Ruby Formatter.uuid用法及代码示例
- Ruby Formatter.random_bytes用法及代码示例
- Ruby Formatter.base64用法及代码示例
- Ruby Formatter.hex用法及代码示例
- Ruby Formatter.alphanumeric用法及代码示例
- Ruby Formatter.choose用法及代码示例
- 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.urlsafe_base64。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。