721件ヒット
[701-721件を表示]
(0.066秒)
種類
- インスタンスメソッド (318)
- 特異メソッド (213)
- モジュール関数 (84)
- 文書 (82)
- クラス (24)
ライブラリ
クラス
-
ARGF
. class (36) - Encoding (12)
-
Encoding
:: Converter (36) - IO (84)
-
Net
:: IMAP (24) - String (160)
- StringScanner (60)
- Symbol (21)
モジュール
- Base64 (36)
-
CGI
:: HtmlExtension (24) - Digest (12)
-
ERB
:: Util (24) -
JSON
:: Generator :: GeneratorMethods :: String (12) - Kconv (12)
- URI (62)
キーワード
- Converter (12)
- Marshal フォーマット (12)
-
NEWS for Ruby 2
. 0 . 0 (12) -
NEWS for Ruby 2
. 1 . 0 (12) -
NEWS for Ruby 2
. 3 . 0 (10) - String (12)
- casecmp (24)
- casecmp? (18)
-
decode
_ utf7 (12) -
decode
_ www _ form (12) -
decode
_ www _ form _ component (12) -
default
_ internal (12) -
each
_ codepoint (24) - encode! (24)
- encode64 (12)
-
encode
_ utf7 (12) -
encode
_ www _ form (12) -
encode
_ www _ form _ component (12) - encoding (12)
- escape (7)
-
for
_ fd (12) - form (24)
-
get
_ byte (12) - getbyte (12)
- getch (12)
- hexencode (12)
- match? (12)
-
matched
_ size (12) - new (79)
- open (24)
-
ruby 1
. 8 . 3 feature (12) -
set
_ encoding (72) -
strict
_ encode64 (12) -
to
_ json _ raw _ object (12) - tolocale (24)
- u (12)
-
url
_ encode (12) -
urlsafe
_ encode64 (12) - 多言語化 (12)
- 正規表現 (12)
検索結果
-
Symbol
# casecmp(other) -> -1 | 0 | 1 | nil (12.0) -
Symbol#<=> と同様にシンボルに対応する文字列の順序を比較しますが、 アルファベットの大文字小文字の違いを無視します。
...ボルではない場合や、文字列のエンコーディングが非互換の場合は、nil を返します。
//emlist[][ruby]{
:foo.casecmp("foo") #=> nil
"\u{e4 f6 fc}".encode("ISO-8859-1").to_sym.casecmp(:"\u{c4 d6 dc}") #=> nil
//}
@see String#casecmp, Symbol#<=>, Symbol#casecmp?... -
Symbol
# casecmp?(other) -> bool | nil (12.0) -
大文字小文字の違いを無視しシンボルを比較します。 シンボルが一致する場合には true を返し、一致しない場合には false を返します。
...er がシンボルではない場合や、文字列のエンコーディングが非互換の場合は、nil を返します。
//emlist[][ruby]{
:foo.casecmp?("foo") #=> nil
"\u{e4 f6 fc}".encode("ISO-8859-1").to_sym.casecmp?(:"\u{c4 d6 dc}") #=> nil
//}
@see String#casecmp?, Symbol#casecmp...