るりまサーチ

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

別のキーワード

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

ライブラリ

キーワード

検索結果

RSS::Maker::ChannelBase#copyright (21102.0)

@todo

@todo

RSS::Rss::Channel#copyright (21102.0)

@todo

@todo

RSS::Maker::ChannelBase#copyright=() (9102.0)

@todo

@todo

RSS::Rss::Channel#copyright= (9102.0)

@todo

@todo

xmlrpc (6012.0)

XML-RPC を扱うためのライブラリです。

...XML-RPC を扱うためのライブラリです。

このページは xmlrpc ライブラリのまとめのページであり、require 'xmlrpc' を実行しても
エラーになることに注意して下さい。

=== Author and Copyright

Copyright
(C) 2001-2004 by Michael Neumann

Released und...
...erm of license as Ruby.

=== Overview

XMLRPC is a lightweight protocol that enables remote procedure calls over
HTTP. It is defined at http://www.xmlrpc.com.

XMLRPC allows you to create simple distributed computing solutions that span
computer languages. Its distinctive feature is its simplicity...
...o
other approaches like SOAP and CORBA.

The Ruby standard library package 'xmlrpc' enables you to create a server that
implements remote procedures and a client that calls them. Very little code
is required to achieve either of these.

=== Example

Try the following code. It calls a standard demo...

絞り込み条件を変える

正規表現 (42.0)

正規表現 * metachar * expansion * char * anychar * string * str * quantifier * capture * grouping * subexp * selector * anchor * cond * option * encoding * comment * free_format_mode * absenceop * list * specialvar * references

...string
* str
* quantifier
* capture
* grouping
* subexp
* selector
* anchor
* cond
* option
* encoding
* comment
* free_format_mode
* absenceop
* list
* specialvar
* references


正規表現(regular expression)は文字列のパターンを記述するための言語...
...るかどうかを判定し、
また含んでいるならばそれが文字列中のどの場所であるかを知ることができます。

//emlist[][ruby]{
/pat/
%r{pat}
//}

などの正規表現リテラルや Regexp.new などで正規表現
オブジェクトを得ることができます...
...す。

//emlist[][ruby]{
/^.*(\d+)\./.match("Copyright 2013.") # => #<MatchData "Copyright 2013." 1:"3">
/^.*?(\d+)\./.match("Copyright 2013.") # => #<MatchData "Copyright 2013." 1:"2013">
//}

また、ネストしていない括弧の対応を取るためにも使えます。

//emlist[][ruby]{...

Rubyの起動 (12.0)

Rubyの起動 * cmd_option * shebang

...います。

ruby [ option ...] [ -- ] [ programfile ] [ argument ...]

ここで、option は後述のcmd_option
のいずれかを指定します。-- は、オプション列の終りを明示するため
に使用できます。programfile は、Ruby スクリプトを記述したファイ...
...ルです。これを省略したり`-' を指定した場合には標準入力を Ruby ス
クリプトとみなします。

programfile が `#!' で始まるファイルである場合、特殊な解釈
が行われます。詳細は後述のshebang を参照
してください

argument に指...
...パイルのみを行い, 実行しません。コンパイル終
了後, 文法エラーが無ければ, "Syntax OK"と出力します。

: --copyright

著作権表示をします。


: -d
: --debug

デバッグモードでスクリプトを実行します。$DEBUG を
true にします...