るりまサーチ

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

別のキーワード

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

検索結果

RSS::Maker::ChannelBase::CategoriesBase::CategoryBase#content (27102.0)

@todo

@todo

RSS::Rss::Channel::Item::Category#content (24102.0)

@todo

@todo

RSS::Maker::ChannelBase::CategoriesBase::CategoryBase#content=() (15102.0)

@todo

@todo

RSS::Rss::Channel::Item::Category#content= (12102.0)

@todo

@todo

RSS::Maker::ChannelBase::CategoriesBase::CategoryBase (12006.0)

categoryは maker.channel.categories.new_categoryで作成されたオ ブジェクトとします.

...categoryは
maker.channel.categories.new_categoryで作成されたオ
ブジェクトとします.

content
を指定する必要があります....

絞り込み条件を変える

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

//emlist[][ruby]{
r = Regexp.compile(<<'__REGEXP__'.strip, Regexp::EXTENDED)
(?<element> \g<stag> \g<content>* \g<etag> ){0}
(?<stag> < \g<name> \s* > ){0}
(?<name> [a-zA-Z_:]+ ){0}
(?<content> [^<&]+ (\g<element> | [^<&]+)* ){0}
(?<etag> </ \k<name+1> >){0}
\g<element>
__REGEXP__
r.ma...