るりまサーチ

最速Rubyリファレンスマニュアル検索!
1868件ヒット [101-200件を表示] (0.081秒)
トップページ > クエリ:g[x] > クエリ:exp[x]

別のキーワード

  1. openssl g
  2. openssl g=
  3. dh g
  4. dsa g
  5. dh g=

キーワード

検索結果

<< < 1 2 3 4 ... > >>

RSS::NotExpectedTagError (12000.0)

Regexp (12000.0)

正規表現のクラス。正規表現のリテラルはスラッシュで囲んだ形式 で記述します。

...s regexp/
//}

Regexp.new(string) を使って正規表現オブジェクトを動的に生成する
こともできます。

//emlist[][ruby]{
str = "this is regexp"
rp1 = Regexp.new("^this is regexp")
p rp1 =~ str # => 0
p Regexp.last_match[0] # => "this is regexp"
//}


spec/regexp...
...d:spec/literal#regexp も参照してください。...
...{
/^this is regexp/
//}

Regexp.new(string) を使って正規表現オブジェクトを動的に生成する
こともできます。

//emlist[][ruby]{
str = "this is regexp"
rp1 = Regexp.new("^this is regexp")
p rp1 =~ str # => 0
p Regexp.last_match[0] # => "this is regexp"
//}

Ruby 3...
....0.0 から正規表現リテラルは freeze されるようになりました。
//emlist[][ruby]{
p /abc/.frozen?
# => true
p /a#{42}bc/.frozen?
# => true
p Regexp.new('abc').frozen?
# => false
//}

spec/regexp や d:spec/literal#regexp も参照してください。...

RegexpError (12000.0)

正規表現のコンパイルに失敗したときに発生します。

...正規表現のコンパイルに失敗したときに発生します。

例:

$ ruby -e 'Regexp.compile("*")'
-e:1:in `initialize': target of repeat operator is not specified: /*/ (RegexpError)
from -e:1:in `Regexp#compile'
from -e:1...

json/add/regexp (12000.0)

Regexp に JSON 形式の文字列に変換するメソッドや JSON 形式の文字列から Ruby のオブジェクトに変換するメソッドを定義します。

...Regexp に JSON 形式の文字列に変換するメソッドや JSON 形式の文字列から Ruby のオブジェクトに変換するメソッドを定義します。...

RbConfig.expand(val, config = CONFIG) -> String (9300.0)

与えられたパスを展開します。

...パスを展開します。

RbConfig.expand("$(bindir)") # => /home/foobar/all-ruby/ruby19x/bin

@param val 展開したい変数名を Makefile に書く形式で指定します。

@param config 変数展開に使用する設定を Hash で指定します。

@see RbConfig::MAKEFILE_CONFIG...

絞り込み条件を変える

Exception2MessageMapper.e2mm_message(klass, exp) -> String | nil (9208.0)

@todo

...@todo

@param klass

@param exp...

Exception2MessageMapper.message(klass, exp) -> String | nil (9208.0)

@todo

...@todo

@param klass

@param exp...

BigDecimal#exponent -> Integer (9200.0)

self の指数部を整数値で返します。

self の指数部を整数値で返します。

Regexp#encoding -> Encoding (9200.0)

正規表現オブジェクトのエンコーディングを表す Encoding オブジェクト を返します。

...正規表現オブジェクトのエンコーディングを表す Encoding オブジェクト
を返します。


@see d:spec/regexp#encoding...

Win32::Registry::Constants::REG_EXPAND_SZ (9200.0)

@todo

@todo

レジストリ値の型。

絞り込み条件を変える

<< < 1 2 3 4 ... > >>