Tbpgr Blog

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

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

Ruby | String | ascii_only?

概要 String#ascii_only? -> bool 詳細 文字列がASCII文字のみで構成されている場合に true を返却 サンプルコード require 'tbpgr_utils' bulk_puts_eval binding, <<-EOS 'hoge'.ascii_only? ''.ascii_only? 'ほgeascii_only?'.ascii_only? EOS __END__ 下…