468件ヒット
[1-100件を表示]
(0.140秒)
ライブラリ
- ビルトイン (36)
-
cgi
/ html (24) -
irb
/ context (180) -
irb
/ ext / save-history (12) -
net
/ http (12) -
net
/ imap (120) - openssl (24)
-
rdoc
/ markup (12) -
rdoc
/ text (12) -
rexml
/ document (12) -
webrick
/ httprequest (12) -
webrick
/ httputils (12)
クラス
-
IRB
:: Context (192) -
Net
:: IMAP :: BodyTypeText (108) -
Net
:: IMAP :: FetchData (12) -
OpenSSL
:: PKCS7 (12) -
OpenSSL
:: X509 :: StoreContext (12) -
RDoc
:: Markup (12) -
REXML
:: Element (12) - String (36)
-
WEBrick
:: HTTPRequest (12) -
WEBrick
:: HTTPUtils :: FormData (12)
モジュール
-
CGI
:: HtmlExtension (24) -
Net
:: HTTPHeader (12) -
RDoc
:: Text (12)
キーワード
- [] (12)
-
_ _ inspect _ _ (12) -
_ _ to _ s _ _ (12) -
add
_ special (12) -
ap
_ name (12) -
ap
_ name= (12) - attr (12)
-
content
_ id (12) - description (12)
- encode (36)
- encoding (12)
-
history
_ file (12) - inspect (12)
-
irb
_ name (12) -
irb
_ name= (12) -
irb
_ path (12) - language (12)
-
load
_ modules (12) - md5 (12)
-
media
_ subtype (12) -
media
_ type (12) - param (12)
-
prompt
_ c (12) -
prompt
_ i (12) -
prompt
_ n (12) -
prompt
_ s (12) - query (12)
-
return
_ format (12) -
sub
_ type (12) - subtype (12)
-
text
_ field (12) - textarea (12)
-
to
_ s (12) - verify (24)
検索結果
先頭5件
-
REXML
:: Element # text(path = nil) -> String | nil (24363.0) -
先頭のテキスト子ノードの文字列を返します。
...:Text#value も参照してください。
path を渡した場合は、その XPath 文字列で指定される
テキストノードの文字列を返します。
テキストノードがない場合には nil を返します。
@param path XPath文字列
@see REXML::Element#get_text
//emlist[......][ruby]{
require 'rexml/document'
doc = REXML::Document.new "<p>some text <b>this is bold!</b> more text</p>"
# doc.root (<p> ... </p>) は2つのテキストノード("some text " と " more text"
# を持っているが、前者を返す
doc.root.text # => "some text "
//}... -
RDoc
:: Text # expand _ tabs(text) -> String (15425.0) -
引数中のタブ(\t)を直前の連続するスペースと合計して 8 文字のスペースにな るように置き換えます。
...引数中のタブ(\t)を直前の連続するスペースと合計して 8 文字のスペースにな
るように置き換えます。
@param text 文字列を指定します。... -
Net
:: IMAP :: BodyTypeText # media _ subtype -> String (15303.0) -
MIME のメディアタイプのサブタイプを返します。 media_subtype は obsolete です。
...MIME のメディアタイプのサブタイプを返します。
media_subtype は obsolete です。
@see Net::IMAP::BodyTypeText#media_type... -
Net
:: IMAP :: BodyTypeText # subtype -> String (15303.0) -
MIME のメディアタイプのサブタイプを返します。 media_subtype は obsolete です。
...MIME のメディアタイプのサブタイプを返します。
media_subtype は obsolete です。
@see Net::IMAP::BodyTypeText#media_type... -
IRB
:: Context # irb _ path -> String (15302.0) -
ライブラリ内部で使用します。
ライブラリ内部で使用します。 -
CGI
:: HtmlExtension # text _ field(attributes) -> String (12542.0) -
タイプが text である input 要素を生成します。
...タイプが text である input 要素を生成します。
@param attributes 属性をハッシュで指定します。
text_field({ "NAME" => "name", "VALUE" => "value" })
# <INPUT TYPE="text" NAME="name" VALUE="value">... -
CGI
:: HtmlExtension # textarea(attributes) -> String (12503.0) -
textarea 要素を生成します。
...textarea 要素を生成します。
@param attributes 属性をハッシュで指定します。
例:
textarea("name", 40, 5)
# = textarea({ "NAME" => "name", "COLS" => 40, "ROWS" => 5 })... -
Net
:: HTTPHeader # sub _ type -> String|nil (12318.0) -
"text/html" における "html" のようなサブタイプを表す 文字列を返します。
..."text/html" における "html" のようなサブタイプを表す
文字列を返します。
Content-Type: ヘッダフィールドが存在しない場合には nil を返します。
//emlist[例][ruby]{
require 'net/http'
uri = URI.parse('http://www.example.com/index.html')
res = Net::HTTP.......get_response(uri)
res.sub_type # => "html"
//}... -
IRB
:: Context # irb _ name -> String (12302.0) -
起動しているコマンド名を文字列で返します。
...起動しているコマンド名を文字列で返します。
@see IRB::Context#irb_name=...