687件ヒット
[1-100件を表示]
(0.058秒)
ライブラリ
- ビルトイン (506)
-
irb
/ input-method (36) - kconv (12)
-
minitest
/ unit (1) -
net
/ http (12) -
net
/ imap (36) -
rexml
/ document (24) - rss (24)
-
webrick
/ httprequest (24) -
webrick
/ httpresponse (12)
クラス
-
ARGF
. class (36) - Array (21)
- Encoding (24)
-
Encoding
:: Converter (120) -
Encoding
:: InvalidByteSequenceError (84) - IO (42)
-
IRB
:: FileInputMethod (12) -
IRB
:: ReadlineInputMethod (12) -
IRB
:: StdioInputMethod (12) -
Net
:: IMAP :: BodyTypeBasic (12) -
Net
:: IMAP :: BodyTypeMessage (12) -
Net
:: IMAP :: BodyTypeText (12) -
REXML
:: XMLDecl (24) -
RSS
:: Maker :: RSSBase (24) - Regexp (12)
- String (167)
- Symbol (12)
-
WEBrick
:: HTTPRequest (24) -
WEBrick
:: HTTPResponse (12)
モジュール
-
MiniTest
:: Assertions (1) -
Net
:: HTTPHeader (12)
キーワード
- == (12)
-
accept
_ encoding (12) -
ascii
_ compatible? (12) - chunked= (12)
- chunked? (12)
- convert (12)
-
destination
_ encoding (12) -
destination
_ encoding _ name (12) - dummy? (12)
- encode (36)
- encoding= (12)
-
error
_ bytes (12) - finish (12)
-
fixed
_ encoding? (12) -
incomplete
_ input? (12) -
insert
_ output (12) - iseuc (12)
-
mu
_ pp (1) - pack (21)
-
primitive
_ convert (48) - putback (24)
- query (12)
-
readagain
_ bytes (12) - replacement= (12)
- scrub (36)
- scrub! (36)
-
set
_ encoding (72) -
set
_ encoding _ by _ bom (6) -
source
_ encoding (12) -
source
_ encoding _ name (12) -
unicode
_ normalized? (11) - unpack (12)
-
valid
_ encoding? (12) - writeencoding (12)
検索結果
先頭5件
-
Symbol
# encoding -> Encoding (21255.0) -
シンボルに対応する文字列のエンコーディング情報を表現した Encoding オブ ジェクトを返します。
...シンボルに対応する文字列のエンコーディング情報を表現した Encoding オブ
ジェクトを返します。
例:
# encoding: utf-8
:foo.encoding # => #<Encoding:US-ASCII>
:あかさたな.encoding # => #<Encoding:UTF-8>
@see String#encoding... -
IRB
:: FileInputMethod # encoding -> Encoding (21203.0) -
読み込んだファイルの文字エンコーディングを返します。
読み込んだファイルの文字エンコーディングを返します。 -
IRB
:: ReadlineInputMethod # encoding -> Encoding (21203.0) -
自身の文字エンコーディングを返します。
自身の文字エンコーディングを返します。 -
IRB
:: StdioInputMethod # encoding -> Encoding (21203.0) -
自身の文字エンコーディングを返します。
自身の文字エンコーディングを返します。 -
Net
:: IMAP :: BodyTypeBasic # encoding -> String (21118.0) -
Content-Transfer-Encoding の値を文字列で返します。
...Content-Transfer-Encoding の値を文字列で返します。
@see 2045... -
Net
:: IMAP :: BodyTypeMessage # encoding -> String (21118.0) -
Content-Transfer-Encoding の値を文字列で返します。
...Content-Transfer-Encoding の値を文字列で返します。
@see 2045... -
Net
:: IMAP :: BodyTypeText # encoding -> String (21118.0) -
Content-Transfer-Encoding の値を文字列で返します。
...Content-Transfer-Encoding の値を文字列で返します。
@see 2045... -
RSS
:: Maker :: RSSBase # encoding (21102.0) -
@todo 作成するXMLのエンコーディングを返します.デフォルトは UTF-8です.
@todo
作成するXMLのエンコーディングを返します.デフォルトは
UTF-8です. -
String
# b -> String (18132.0) -
self の文字エンコーディングを ASCII-8BIT にした文字列の複製を返します。
...self の文字エンコーディングを ASCII-8BIT にした文字列の複製を返します。
//emlist[例][ruby]{
'abc123'.encoding # => #<Encoding:UTF-8>
'abc123'.b.encoding # => #<Encoding:ASCII-8BIT>
//}...