3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

ランダム文字列を手軽に作る

Last updated at Posted at 2015-02-10

アルファベット小文字からランダムに1文字を取得

[*"a".."z"].sample

ランダム文字列を取得

3文字のランダム文字列

3.times.inject("") { |str| str.concat([*"a".."z"].sample) }

応用:3文字のひらがなランダム文字列

3.times.inject("") { |str| str.concat([*"ぁ".."ん"].sample) }

応用2:3文字のひらがな・カタカナランダム文字列

3.times.inject("") { |str| str.concat([*"ぁ".."ん", *"ァ".."ヴ"].sample) }

ひらがなとカタカナをくっつけます。

おまけ:3文字のロシア語アルファベット小文字ランダム文字列

3.times.inject("") { |str| str.concat([*"а".."я", "ё"].sample) }

ロシア語アルファベット

абвгдеёжзийклмнопрстуфхцчшщъыьэюя

の33文字、だそうです。

3
3
7

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?