1120件ヒット
[1-100件を表示]
(0.136秒)
ライブラリ
- ビルトイン (651)
-
cgi
/ core (12) - csv (24)
-
irb
/ input-method (12) - kconv (12)
-
minitest
/ unit (1) -
net
/ http (72) -
net
/ imap (36) - open-uri (24)
- openssl (12)
- psych (72)
-
rexml
/ document (60) -
rexml
/ sax2listener (12) -
rexml
/ streamlistener (12) - rss (24)
- scanf (12)
- stringio (24)
-
webrick
/ httprequest (24) -
webrick
/ httpresponse (12)
クラス
-
ARGF
. class (60) - Array (21)
- CSV (24)
- Encoding (60)
-
Encoding
:: Converter (156) -
Encoding
:: InvalidByteSequenceError (84) -
Encoding
:: UndefinedConversionError (48) - IO (60)
-
IRB
:: ReadlineInputMethod (12) - Integer (24)
-
Net
:: IMAP :: BodyTypeBasic (12) -
Net
:: IMAP :: BodyTypeMessage (12) -
Net
:: IMAP :: BodyTypeText (12) -
OpenSSL
:: SSL :: SSLContext (12) -
Psych
:: Handler (12) -
Psych
:: Nodes :: Stream (24) -
Psych
:: Stream (24) -
Psych
:: Visitors :: YAMLTree (12) -
RDoc
:: Options (12) -
REXML
:: Document (36) -
REXML
:: Instruction (12) -
REXML
:: XMLDecl (12) -
RSS
:: Maker :: RSSBase (24) - Regexp (12)
- String (126)
- StringIO (24)
- Time (24)
-
WEBrick
:: HTTPRequest (24) -
WEBrick
:: HTTPResponse (12)
モジュール
-
CGI
:: QueryExtension (12) -
MiniTest
:: Assertions (1) -
Net
:: HTTPHeader (72) -
OpenURI
:: Meta (24) -
REXML
:: SAX2Listener (12) -
REXML
:: StreamListener (12)
キーワード
- << (12)
-
accept
_ encoding (24) -
ascii
_ compatible? (12) - asctime (12)
-
ca
_ file= (12) - casecmp (12)
- chr (24)
- chunked= (12)
- chunked? (12)
- concat (21)
-
content
_ encoding (12) - convpath (12)
- ctime (12)
-
destination
_ encoding (36) -
destination
_ encoding _ name (24) - each (12)
-
each
_ capitalized _ name (12) -
each
_ header (12) -
each
_ key (12) -
each
_ name (12) - encoding= (36)
-
error
_ bytes (12) -
error
_ char (12) -
external
_ encoding (48) -
fixed
_ encoding? (12) -
incomplete
_ input? (12) -
insert
_ output (12) -
internal
_ encoding (48) -
last
_ error (12) -
mu
_ pp (1) - name (12)
- names (12)
- pack (21)
-
primitive
_ convert (48) -
primitive
_ errinfo (12) - putback (24)
- query (12)
-
readagain
_ bytes (12) - replacement (12)
- replacement= (12)
- replicate (12)
- scanf (12)
-
set
_ encoding (72) -
source
_ encoding (12) -
source
_ encoding _ name (24) -
stand
_ alone? (12) - start (36)
-
start
_ stream (12) - target (12)
-
to
_ s (12) - tolocale (12)
-
unicode
_ normalize (11) -
unicode
_ normalize! (11) -
unicode
_ normalized? (11) - unpack (12)
-
valid
_ encoding? (12) - write (24)
- xmldecl (36)
検索結果
先頭5件
-
IRB
:: ReadlineInputMethod # 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... -
Psych
:: Nodes :: Stream # encoding -> Integer (21108.0) -
stream に使われるエンコーディングを返します。
...stream に使われるエンコーディングを返します。
@see Psych::Nodes::Stream#encoding=... -
RSS
:: Maker :: RSSBase # encoding (21102.0) -
@todo 作成するXMLのエンコーディングを返します.デフォルトは UTF-8です.
@todo
作成するXMLのエンコーディングを返します.デフォルトは
UTF-8です. -
Encoding
:: InvalidByteSequenceError # destination _ encoding -> Encoding (15343.0) -
エラーを発生させた変換の変換先のエンコーディングを Encoding オブジェクトで返します。
...エラーを発生させた変換の変換先のエンコーディングを Encoding
オブジェクトで返します。
@see Encoding::InvalidByteSequenceError#source_encoding,
Encoding::UndefinedConversionError#destination_encoding... -
Encoding
:: UndefinedConversionError # destination _ encoding -> Encoding (15331.0) -
エラーを発生させた変換の変換先のエンコーディングを Encoding オブジェクトで返します。
...エラーを発生させた変換の変換先のエンコーディングを Encoding
オブジェクトで返します。
@see Encoding::UndefinedConversionError#source_encoding... -
Encoding
:: Converter # destination _ encoding -> Encoding (15321.0) -
変換先のエンコーディングを返します。
...変換先のエンコーディングを返します。
@return 変換先のエンコーディング
//emlist[][ruby]{
ec = Encoding::Converter.new("utf-8", "euc-jp")
ec.destination_encoding #=> #<Encoding:EUC-JP>
//}...