るりまサーチ

最速Rubyリファレンスマニュアル検索!
8件ヒット [1-8件を表示] (0.138秒)
トップページ > クエリ:l[x] > クエリ:options[x] > クエリ:downcase![x]

別のキーワード

  1. socket ip_options
  2. syslog options
  3. optparse options
  4. getoptlong set_options
  5. fileutils options

ライブラリ

クラス

検索結果

String#downcase!(*options) -> self | nil (18313.0)

全ての大文字を対応する小文字に破壊的に置き換えます。 どの文字がどう置き換えられるかは、オプションの有無や文字列のエンコーディングに依存します。

...グに依存します。

@param options オプションの詳細は String#downcase を参照してください。
@return self を変更して返します。変更が無かった場合は nil を返します。

//emlist[例][ruby]{
str = "STRing?"
str.downcase!
p str # => "string?"
//}

@see St...
...ring#downcase, String#upcase!, String#swapcase!, String#capitalize!...