るりまサーチ

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

別のキーワード

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

検索結果

<< 1 2 > >>

CGI::HtmlExtension#form(method = "post", action = nil, enctype = "application/x-www-form-urlencoded") -> String (21505.0)

form 要素を生成します。 ブロックを与えると、ブロックを評価した結果が内容になります。

...
form
要素を生成します。
ブロックを与えると、ブロックを評価した結果が内容になります。

@param method method 属性の値として "get" か "post" を指定します。

@param action action 属性の値を指定します。デフォルトは現在の CGI ス...
...は "application/x-www-form-urlencoded" です。

例:
form
{ "string" }
# <FORM METHOD="post" ENCTYPE="application/x-www-form-urlencoded">string</FORM>

form
("get"){ "string" }
# <FORM METHOD="get" ENCTYPE="application/x-www-form-urlencoded">string</FORM>

form
("get", "url"){ "string"...
...}
# <FORM METHOD="get" ACTION="url" ENCTYPE="application/x-www-form-urlencoded">string</FORM>...

CGI::HtmlExtension#form(method = "post", action = nil, enctype = "application/x-www-form-urlencoded") { ... } -> String (21505.0)

form 要素を生成します。 ブロックを与えると、ブロックを評価した結果が内容になります。

...
form
要素を生成します。
ブロックを与えると、ブロックを評価した結果が内容になります。

@param method method 属性の値として "get" か "post" を指定します。

@param action action 属性の値を指定します。デフォルトは現在の CGI ス...
...は "application/x-www-form-urlencoded" です。

例:
form
{ "string" }
# <FORM METHOD="post" ENCTYPE="application/x-www-form-urlencoded">string</FORM>

form
("get"){ "string" }
# <FORM METHOD="get" ENCTYPE="application/x-www-form-urlencoded">string</FORM>

form
("get", "url"){ "string"...
...}
# <FORM METHOD="get" ACTION="url" ENCTYPE="application/x-www-form-urlencoded">string</FORM>...

Gem::Specification#platform=(platform) (15400.0)

この Gem パッケージを使用できるプラットフォームをセットします。

...この Gem パッケージを使用できるプラットフォームをセットします。

@param platform この Gem パッケージを使用できるプラットフォームを指定します。
デフォルトは Gem::Platform::RUBY です。

@see Gem::Platform::RUBY...

Gem::Specification#original_platform=(platform) (15300.0)

この属性は古いバージョンの Gem パッケージをアンインストールするために残されています。

...この属性は古いバージョンの Gem パッケージをアンインストールするために残されています。

@param platform プラットフォームを指定します。...

Gem::Specification#original_platform -> String (15200.0)

この属性は古いバージョンの Gem パッケージをアンインストールするために残されています。

この属性は古いバージョンの Gem パッケージをアンインストールするために残されています。

絞り込み条件を変える

Gem::Specification#platform -> String (15200.0)

この Gem パッケージを使用できるプラットフォームを返します。

この Gem パッケージを使用できるプラットフォームを返します。

Gem::OldFormat#spec -> Gem::Specification (6100.0)

Gem の Gem::Specification を返します。

...Gem の Gem::Specification を返します。...

Gem::SourceIndex#search(gem_pattern, platform_only = false) -> [Gem::Specification] (300.0)

引数で指定された条件を満たす Gem のリストを返します。

...満たす Gem のリストを返します。

@param gem_pattern 検索したい Gem を表す Gem::Dependency のインスタンスを指定します。

@param platform_only 真を指定するとプラットフォームが一致するもののみを返します。デフォルトは偽です。...

Gem::SourceInfoCache#search(pattern, platform_only = false, all = false) -> [Gem::Specification] (300.0)

与えられた条件を満たす Gem::Specification のリストを返します。

...fication のリストを返します。

@param pattern 検索したい Gem を表す Gem::Dependency のインスタンスを指定します。

@param platform_only 真を指定するとプラットフォームが一致するもののみを返します。デフォルトは偽です。

@param all...

正規表現 (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]{
# (..) に at がマッチしたのを \1 で参照し、マッチが成功している。
m = /[csh](..) [csh]\1 in/.match("The cat sat in the hat")
# => #<MatchData "cat sat in" 1:"at">
# Regexp#match でマッチしたテキ...

絞り込み条件を変える

<< 1 2 > >>