るりまサーチ

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.132秒)

別のキーワード

  1. matrix l
  2. kernel $-l
  3. _builtin $-l
  4. lupdecomposition l
  5. l matrix

ライブラリ

クラス

検索結果

REXML::Instruction#target -> String (21114.0)

XML 処理命令のターゲットを返します。

...L 処理命令のターゲットを返します。

//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<
?xml version="1.0" encoding="utf-8" ?>
<
?xml-stylesheet type="text/css" href="style.css"?>
<
root />
EOS
doc[2] # => <?p-i xml-stylesheet ...?>
doc[2].target # => "xml-styl...
...esheet"
doc[2].content # => "type=\"text/css\" href=\"style.css\""
//}...

REXML::Instruction#content -> String | nil (3119.0)

XML 処理命令の内容を返します。

...XML 処理命令の内容を返します。

//emlist[][ruby]{
require 'rexml/document'
doc = REXML::Document.new(<<EOS)
<
?xml version="1.0" encoding="utf-8" ?>
<
?xml-stylesheet type="text/css" href="style.css"?>
<
?foobar?>
<
root />
EOS
doc[2] # => <?p-i xml-stylesheet ...?>
doc[2].target # => "xml-...
...stylesheet"
doc[2].content # => "type=\"text/css\" href=\"style.css\""
doc[4].target # => "foobar"
doc[4].content # => nil
//}...