るりまサーチ

最速Rubyリファレンスマニュアル検索!
180件ヒット [1-100件を表示] (0.040秒)

別のキーワード

  1. csv quote_char
  2. readline basic_quote_characters
  3. readline basic_quote_characters=
  4. readline filename_quote_characters
  5. readline completer_quote_characters

検索結果

<< 1 2 > >>

Regexp.quote(string) -> String (15108.0)

string の中で正規表現において特別な意味を持つ文字の直前にエ スケープ文字(バックスラッシュ)を挿入した文字列を返します。

...現において特別な意味を持つ文字の直前にエ
スケープ文字(バックスラッシュ)を挿入した文字列を返します。

@
param string 正規表現において特別な意味をもつ文字をもつ文字列を指定します。

//emlist[例][ruby]{
rp = Regexp.escape("$...

Readline.basic_quote_characters=(string) (6126.0)

スペースなどの単語の区切りをクオートするための 複数の文字で構成される文字列 string を指定します。

...複数の文字で構成される文字列 string を指定します。

GNU Readline のデフォルト値は、「"'」です。

@
param string 文字列を指定します。

@
raise NotImplementedError サポートしていない環境で発生します。

@
see Readline.basic_quote_characters...

Readline.completer_quote_characters=(string) (6126.0)

ユーザの入力の補完を行う際、スペースなどの単語の区切りを クオートするための複数の文字で構成される文字列 string を指定します。 指定した文字の間では、Readline.completer_word_break_characters= で指定した文字列に含まれる文字も、普通の文字列として扱われます。

...mpleter_word_break_characters=
で指定した文字列に含まれる文字も、普通の文字列として扱われます。

@
param string 文字列を指定します。

@
raise NotImplementedError サポートしていない環境で発生します。

@
see Readline.completer_quote_characters...

Readline.filename_quote_characters=(string) (6126.0)

ユーザの入力時にファイル名の補完を行う際、スペースなどの単語の区切りを クオートするための複数の文字で構成される文字列 string を指定します。

...数の文字で構成される文字列 string を指定します。

GNU Readline のデフォルト値は nil(NULL) です。

@
param string 文字列を指定します。

@
raise NotImplementedError サポートしていない環境で発生します。

@
see Readline.filename_quote_characters...

Readline.basic_quote_characters -> String (6120.0)

スペースなどの単語の区切りをクオートするための 複数の文字で構成される文字列を取得します。

...スペースなどの単語の区切りをクオートするための
複数の文字で構成される文字列を取得します。

@
raise NotImplementedError サポートしていない環境で発生します。

@
see Readline.basic_quote_characters=...

絞り込み条件を変える

Readline.completer_quote_characters -> String (6120.0)

ユーザの入力の補完を行う際、スペースなどの単語の区切りを クオートするための複数の文字で構成される文字列を取得します。

...ーザの入力の補完を行う際、スペースなどの単語の区切りを
クオートするための複数の文字で構成される文字列を取得します。

@
raise NotImplementedError サポートしていない環境で発生します。

@
see Readline.completer_quote_characters=...

Readline.filename_quote_characters -> String (6120.0)

ユーザの入力時にファイル名の補完を行う際、スペースなどの単語の区切りを クオートするための複数の文字で構成される文字列を取得します。

...ファイル名の補完を行う際、スペースなどの単語の区切りを
クオートするための複数の文字で構成される文字列を取得します。

@
raise NotImplementedError サポートしていない環境で発生します。

@
see Readline.filename_quote_characters=...

Psych::Nodes::Scalar.new(value, anchor=nil, tag=nil, plain=true, quoted=false, style=ANY) -> Psych::Nodes:Scalar (137.0)

Scalar オブジェクトを生成します。

...かどうか、quoted は quoted style であるかどうか
を指定します。style には node の style を整数値で渡します。
style は次の値のいずれかです。
* Psych::Nodes::Scalar::ANY
* Psych::Nodes::Scalar::PLAIN
* Psych::Nodes::Scalar::SINGLE_QUOTED
* Psych::Nod...
...alar::DOUBLE_QUOTED
* Psych::Nodes::Scalar::LITERAL
* Psych::Nodes::Scalar::FOLDED

@
param value スカラー値
@
param anchor 関連付けられた anchor の名前
@
param tag タグ名
@
param plain plain style であるかどうか
@
param quoted quoted style であるかどうか
@
param style...

CSV.new(data, options = Hash.new) -> CSV (55.0)

このメソッドは CSV ファイルを読み込んだり、書き出したりするために String か IO のインスタンスをラップします。

...ingIO を渡してください。

@
param data String か IO のインスタンスを指定します。
String のインスタンスを指定した場合、CSV#string を使用して
後からデータを取り出すことが出来ます。

@
param options CSV をパースす...
...とき
データの先頭から次の "\r\n", "\n", "\r" の並びまでを読みます。
A sequence will be selected even if it occurs in a quoted field, assuming that you
would have the same line endings there. If none of those sequences is
found, +data+ is ARGF, Object::STDIN, Object::S...
...etting the document position to where it was before the
read ahead. This String will be transcoded into the data's Encoding before parsing.
: :quote_char
フィールドをクオートする文字を指定します。長さ 1 の文字列でなければなりません。
正しいダブル...
<< 1 2 > >>