Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

2014-12-22から1日間の記事一覧

Ruby | String | casecmp

概要 String#casecmp(other) -> Integer | nil 詳細 String# と同様の比較をするが, 大文字小文字を無視する。 サンプルコード require 'tbpgr_utils' bulk_puts_eval binding, <<-EOS 'b'<=>'A' 'b'<=>'a' 'b'<=>'B' 'b'<=>'b' 'b'<=>'C' 'b'<=>'c' 'b'.cas…