るりまサーチ

最速Rubyリファレンスマニュアル検索!
816件ヒット [1-100件を表示] (0.136秒)
トップページ > クエリ:e[x] > クエリ:fix[x]

別のキーワード

  1. open3 popen2e
  2. socket af_e164
  3. matrix det_e
  4. matrix rank_e
  5. open3 capture2e

モジュール

キーワード

検索結果

<< 1 2 3 ... > >>

BigDecimal#fix -> BigDecimal (21201.0)

self の整数部分を新しい BigDecimal オブジェクトにして返します。

...self の整数部分を新しい BigDecimal オブジェクトにして返します。...

RSS::OverlappedPrefixError (18000.0)

IPAddr#prefix=(prefixlen) (12400.0)

プリフィックス長を prefixlen に設定します。

...プリフィックス長を prefixlen に設定します。

@param prefixlen 設定したいプリフィックス長をビット数で指定します。

@raise IPAddr::InvalidPrefixError 引数 prefixlen に整数以外のオブジェクトを指定した場合に発生します。...

REXML::SAX2Listener#start_prefix_mapping(prefix, uri) -> () (12400.0)

名前空間の接頭辞(prefix)が導入されたときに呼び出される コールバックメソッドです。

...の接頭辞(prefix)が導入されたときに呼び出される
コールバックメソッドです。

以下のようなXMLを処理
<a xmlns:foo="http://foo.example.org/">
<foo:b />
</a>
すると
start_prefix_mapping("foo", "http://foo.example.org/")
start_element(nil, "a", "a", {...
..."xmlns:foo" => "http://foo.example.org/"})
:
e
nd_element(nil, "a", "a")
e
nd_prefix_mapping("foo")
の順で呼びだされます。つまり名前空間を導入した要素の start_element の前に
start_prefix_mapping が呼びだされます。

@param prefix 接頭辞の文字列が渡...

String#delete_prefix!(prefix) -> self | nil (12400.0)

self の先頭から破壊的に prefix を削除します。

...self の先頭から破壊的に prefix を削除します。

@param prefix 先頭から削除する文字列を指定します。

@return 削除した場合は self、変化しなかった場合は nil

//emlist[][ruby]{
"hello".delete_prefix!("hel") # => "lo"
"hello".delete_prefix!("llo") # => n...
...il
//}

@see String#delete_prefix
@see String#delete_suffix!
@see String#start_with?...

絞り込み条件を変える

String#delete_suffix!(suffix) -> self | nil (12400.0)

self の末尾から破壊的に suffix を削除します。

...self の末尾から破壊的に suffix を削除します。

@param suffix 末尾から削除する文字列を指定します。

@return 削除した場合は self、変化しなかった場合は nil

//emlist[][ruby]{
"hello".delete_suffix!("llo") # => "he"
"hello".delete_suffix!("hel") # => n...
...il
//}

@see String#chomp!
@see String#chop!
@see String#delete_prefix!
@see String#delete_suffix
@see String#end_with?...

REXML::SAX2Listener#end_prefix_mapping(prefix) -> () (12300.0)

名前空間の接頭辞(prefix)の適用範囲が終了したときに 呼び出されるコールバックメソッドです。

...名前空間の接頭辞(prefix)の適用範囲が終了したときに
呼び出されるコールバックメソッドです。

@param prefix 接頭辞の文字列が渡されます...

String#delete_prefix(prefix) -> String (12300.0)

文字列の先頭から prefix を削除した文字列のコピーを返します。

...ら prefix を削除した文字列のコピーを返します。

@param prefix 先頭から削除する文字列を指定します。

@return 文字列の先頭から prefix を削除した文字列のコピー

//emlist[][ruby]{
"hello".delete_prefix("hel") # => "lo"
"hello".delete_prefix("llo")...
...# => "hello"
//}

@see String#delete_prefix!
@see String#delete_suffix
@see String#start_with?...

String#delete_suffix(suffix) -> String (12300.0)

文字列の末尾から suffix を削除した文字列のコピーを返します。

...suffix を削除した文字列のコピーを返します。

@param suffix 末尾から削除する文字列を指定します。

@return 文字列の末尾から suffix を削除した文字列のコピー

//emlist[][ruby]{
"hello".delete_suffix("llo") # => "he"
"hello".delete_suffix("hel") #...
...=> "hello"
//}

@see String#chomp
@see String#chop
@see String#delete_prefix
@see String#delete_suffix!
@see String#end_with?...

void rb_exec_arg_fixup(struct rb_exec_arg *e) (12300.0)

この関数は deprecated です。

...この関数は deprecated です。...

絞り込み条件を変える

REXML::Attribute#prefix -> String (12230.0)

属性の名前空間を返します。

...

//emlist[][ruby]{
require 'rexml/document'
e
= REXML::Element.new( "elns:myelement" )
e
.add_attribute( "nsa:a", "aval" )
e
.add_attribute( "b", "bval" )
p e.attributes.get_attribute( "a" ).prefix # -> "nsa"
p e.attributes.get_attribute( "b" ).prefix # -> "elns"
a = REXML::Attribute.new( "x",...
..."y" )
p a.prefix # -> ""
//}...
<< 1 2 3 ... > >>