472件ヒット
[1-100件を表示]
(0.095秒)
別のキーワード
ライブラリ
- ビルトイン (40)
-
cgi
/ core (24) -
cgi
/ html (120) - rss (84)
-
rubygems
/ source _ info _ cache (24) - uri (96)
-
win32
/ registry (12) - win32ole (48)
クラス
-
Gem
:: SourceInfoCache (24) - Module (12)
-
RDoc
:: Options (24) -
RSS
:: Maker :: ImageBase (24) -
RSS
:: RDF :: Image (24) -
RSS
:: Rss :: Channel :: Image (24) -
RSS
:: Rss :: Channel :: Item :: Guid (12) - String (16)
- Thread (12)
-
URI
:: Generic (72) -
URI
:: MailTo (24) -
WIN32OLE
_ EVENT (12) -
WIN32OLE
_ METHOD (24) -
WIN32OLE
_ PARAM (12) -
Win32
:: Registry (12)
モジュール
-
CGI
:: HtmlExtension (120) -
CGI
:: QueryExtension (24)
キーワード
- + (12)
- - (12)
- [] (12)
- coerce (12)
- css (12)
-
each
_ grapheme _ cluster (16) - form (48)
- helpstring (12)
- info (12)
- isPermaLink (12)
- merge (12)
-
multipart
_ form (48) -
ole
_ type _ detail (12) -
on
_ event (12) - params (12)
-
reset
_ cache _ for (12) -
return
_ type _ detail (12) -
route
_ from (12) -
route
_ to (12) -
search
_ with _ source (12) -
thread
_ variable _ get (12) -
to
_ mailtext (12) -
to
_ rfc822text (12) - url= (36)
- using (12)
- webcvs (12)
検索結果
先頭5件
-
RSS
:: Maker :: ImageBase # url (21103.0) -
@todo
@todo -
RSS
:: RDF :: Image # url (21103.0) -
@todo
@todo -
RSS
:: Rss :: Channel :: Image # url (21103.0) -
@todo
@todo -
RSS
:: Maker :: ImageBase # url=() (9103.0) -
@todo
@todo -
RSS
:: RDF :: Image # url= (9103.0) -
@todo
@todo -
RSS
:: Rss :: Channel :: Image # url= (9103.0) -
@todo
@todo -
URI
:: Generic # merge(rel) -> URI :: Generic (6285.0) -
自身と与えられたパス rel を連結した新しい URI オブジェクトを生成して返します。
...TP:0x201001c0 URL:http://example.com/foo/bar.html>
URI('http://a/b/c/d;p?q').merge('?y') #=> #<URI::HTTP:0xb7ca2e2c URL:http://a/b/c/d;p?y>
URI('http://a/b/c/d;p?q').merge('/./g') #=> #<URI::HTTP:0xb7ca2738 URL:http://a/g>
URI('http://a/b/c/d;p?q').merge('/../g') #=......> #<URI::HTTP:0xb7ca2008 URL:http://a/g>
URI('http://a/b/c/d;p?q').merge('../../../g') #=> #<URI::HTTP:0xb7ca1888 URL:http://a/g>
URI('http://a/b/c/d;p?q').merge('../../../../g') #=> #<URI::HTTP:0xb7ca10a4 URL:http://a/g>... -
String
# each _ grapheme _ cluster {|grapheme _ cluster| block } -> self (6207.0) -
文字列の書記素クラスタに対して繰り返します。
...String#each_char と違って、
Unicode Standard Annex #29 (https://unicode.org/reports/tr29/)
で定義された書記素クラスタに対して繰り返します。
//emlist[例][ruby]{
"a\u0300".each_char.to_a.size # => 2
"a\u0300".each_grapheme_cluster.to_a.size # => 1
//}
@see String#graphe... -
WIN32OLE
_ METHOD # helpstring -> String | nil (6207.0) -
メソッドのヘルプ文字列を取得します。
...メソッドのヘルプ文字列を取得します。
helpstringは、IDEがメソッドのバルーンヘルプを表示するような場合に利用可
能な、1行程度でメソッドを説明する文字列です。
@return ヘルプ文字列を返します。未定義ならばnilを返し......ます。
tobj = WIN32OLE_TYPE.new('Microsoft Internet Controls', 'IWebBrowser')
method = WIN32OLE_METHOD.new(tobj, 'Navigate')
puts method.helpstring # => Navigates to a URL or file....