格式灵活的 Faker ID 号
我正在寻找一种在我的规格中生成代码/ID的方法。我发现 barcodes “ https://github.com/faker-ruby/faker/blob/master/doc/default/code.md” github.com/faker-ruby/faker/blob/master/doc/default/id_number.md“ rel =“ nofollow noreferrer”> ID号码。这些都不适合我的目的...或者如果我使用它们,它们将对我实际生成的代码类型产生误导。是否有一个允许格式指定符的发电机?例如,我想以指定顺序生成一个带数字和破折号的字符串,例如##### - ### - #### - ######
,例子。
I'm looking for a way to generate codes/ids in my specs. I found barcodes, codes, and id numbers. None of these quite fit my purpose...or if I use them they will be misleading for the type of code I'm actually generating. Is there a generator that allows for a format specifier? For example, I'd like to generate a string with digits and dashes in a specified sequence, like #####-###-####-#####
, for example.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Faker 的
numerify
、letterify
和bothify
看起来就像您正在寻找的:文档
Faker's
numerify
,letterify
, andbothify
seem like what you're looking for:Docs