るりまサーチ

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

別のキーワード

  1. _builtin to_i
  2. fiddle to_i
  3. matrix elements_to_i
  4. csv to_i
  5. matrix i

ライブラリ

キーワード

検索結果

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

@todo

@todo

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

@todo

@todo

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

@todo

@todo

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

@todo

@todo

xmlrpc (6036.0)

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

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

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

=== Author and Copyright

Copyright
(C) 2001-2004 by Michael Neumann

Released und...
...m 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 c...
...oaches like SOAP and CORBA.

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

=== Example

Try the following code. It calls a standard demonstration re...

絞り込み条件を変える

正規表現 (132.0)

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

...achar
* expansion
* char
* anychar
* 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の起動 (66.0)

Rubyの起動 * cmd_option * shebang

...Rubyの起動
* cmd_option
* shebang

Rubyインタプリタの起動は以下の書式のコマンドラインにより行います。

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

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

programfile が `#!' で始まるファイルである場合、...
...irectory

スクリプト実行前に指定されたディレクトリに移動します。

: -c

スクリプトの内部形式へのコンパイルのみを行い, 実行しません。コンパイル終
了後, 文法エラーが無ければ, "Syntax OK"と出力します。

: --copyright...