小窓モード


プレミアム

ログイン
設定

設定

Weblio 辞書 > 英和辞典・和英辞典 > Weblio例文辞書 > quote(string)の意味・解説 

quote(string)とは 意味・読み方・使い方

ピン留め

追加できません

(登録数上限)

単語を追加

Weblio例文辞書での「quote(string)」に類似した例文

quote(string)

例文

bark (out) an order

例文

in quotes

例文

in quotes

例文

give an abstract (of)

例文

get in (a) line

例文

an apostrophe ( ’)

例文

score (a spare)

例文

bellow (out) a song

例文

the stringof a purse, etc.

例文

shout (out) an answer

例文

syntax

例文

syntax

例文

sniff (out) a plot

例文

chisel (out) a statue

例文

skip (the) roll call

例文

cut (up) dido(e)s

例文

roll (the) dice

例文

to colloquialize a literary word

Weblio例文辞書はプログラムで機械的に意味や英語表現を生成しているため、不適切な項目が含まれていることもあります。ご了承くださいませ。

「quote(string)」の部分一致の例文検索結果

該当件数 : 15



例文

the input string to quote発音を聞く 例文帳に追加

クォートする入力文字列。 - PEAR

Select the "data.text" string,including the quote marks.発音を聞く 例文帳に追加

二重引用符も含め、data.text を選択します。 - NetBeans

The quote characters are stripped from any quoted string.例文帳に追加

引用符は文字列から削除されます。 - Python

The buildFilter method uses the quote method internally to construct SQL literal string representations of values.発音を聞く 例文帳に追加

buildFilter メソッドは内部で quote メソッドを使用してSQL リテラル文字列を作成しています。 - PEAR

built-in function and by string conversions (reverse quotes) to compute the ``official''string representation of an object.例文帳に追加

や、文字列への変換 (逆クオート表記: reverse quote) の際に呼び出され、オブジェクトを表す ``公式の (official)'' 文字列を計算します。 - Python

A one-character string used to quote elements containing the delimiter or which start with the quotechar.例文帳に追加

delimiter を含むか、quotechar から始まる要素をクオートする際に用いられる 1 文字からなる文字列です。 - Python

例文

The 'raw' mode does not quote the data before building the query getOption($option)Get the given option.debug($string)発音を聞く 例文帳に追加

'raw' モードは、クエリを作成する際にデータをクォートしません。 getOption($option)指定したオプションを取得します。 - PEAR

>>例文の一覧を見る

調べた例文を記録して、 効率よく覚えましょう
Weblio会員登録無料で登録できます!
  • 履歴機能
    履歴機能
    過去に調べた
    単語を確認!
  • 語彙力診断
    語彙力診断
    診断回数が
    増える!
  • マイ単語帳
    マイ単語帳
    便利な
    学習機能付き!
  • マイ例文帳
    マイ例文帳
    文章で
    単語を理解!
  • その他にも便利な機能が満載!
Weblio会員登録(無料)はこちらから

「quote(string)」の部分一致の例文検索結果

該当件数 : 15



例文

All tokens in the expression undergo parameter expansion, string expansion, command substitution, and quote removal.発音を聞く 例文帳に追加

式に含まれる全てのトークンに対して、パラメータ展開・文字列展開・コマンド置換・クォートの削除が行われます。 - JM

The string is put directly into the query, so you must escape and quote literals according to the DBMS's standards.発音を聞く 例文帳に追加

この文字列は直接クエリに組み込まれます。 そのため、DBMS の規約に従ってリテラルのエスケープおよびクォートを行う必要があります。 - PEAR

Return a new string with backslashes in str replaced by two backslashes, and double quotes replaced by backslash-double quote.例文帳に追加

文字列 str 内のバックスラッシュを バックスラッシュ2つ に置換した新しい文字列を返します。 また、ダブルクォートは バックスラッシュ + ダブルクォートに置換されます。 - Python

String quotes can be escaped with a backslash, but the backslash remains in the string; for example, r""" is a valid string literal consisting of two characters: a backslash and a double quote;r"" is not a valid string literal (even a raw string cannot end in an odd number of backslashes).例文帳に追加

引用符はバックスラッシュでエスケープすることができますが、バックスラッシュ自体も残ってしまいます; 例えば、r""" は不正でない文字列リテラルで、バックスラッシュと二重引用符からなる文字列を表します; r"" は正しくない文字列リテラルです (raw 文字列を奇数個連なったバックスラッシュで終わらせることはできません)。 - Python

Specifically, a raw string cannot end in a single backslash (since the backslash would escape the following quote character).例文帳に追加

厳密にいえば、(バックスラッシュが直後のクオート文字をエスケープしてしまうため) raw 文字列を単一のバックスラッシュで終わらせることはできないということになります。 - Python

Return a new string with backslashes in str replaced by two backslashes and double quotes replaced by backslash-double quote.例文帳に追加

str 中のバックスラッシュが 2 つのバックスラッシュに置き換えられ、二重引用符がバックスラッシュ付きの二重引用符に置き換えられた、新たな文字列を返します。 - Python

(A``quote'' is the character used to open the string, i.e. either' or ".)Unless an "r" or "R" prefix is present, escapesequences in strings are interpreted according to rules similarto those used by Standard C. The recognized escape sequences are:発音を聞く 例文帳に追加

"r" または "R" 接頭文字がつかないかぎり、文字列中のエスケープシーケンスは標準 C で使われているのと同様の法則にしたがって解釈されます。 以下に Python で認識されるエスケープシーケンスを示します: - Python

例文

After the string is decoded, it is expanded via parameter expansion, command substitution, arithmetic expansion, and quote removal, subject to the value of the promptvars shell option (see the description of the shopt command under "SHELL BUILTIN COMMANDS" below).発音を聞く 例文帳に追加

この文字列がデコードされた後、さらにパラメータ展開、コマンド置換、算術式展開、クォート削除が適用されます。 展開はシェルオプションpromptvars(後述のシェルの組み込みコマンドの項にあるshoptコマンドの説明を参照) の値に基づいて行われます。 - JM

>>例文の一覧を見る

quote(string)のページの著作権
英和・和英辞典 情報提供元は 参加元一覧 にて確認できます。

   

ピン留めアイコンをクリックすると単語とその意味を画面の右側に残しておくことができます。

こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

会員登録のメリット検索履歴を保存できる!

会員登録のメリット語彙力診断の実施回数増加!

無料会員に登録する

このモジュールを今後表示しない
みんなの検索ランキング
閲覧履歴
無料会員登録をすると、
単語の閲覧履歴を
確認できます。
無料会員に登録する
英→日 日→英
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

会員登録のメリット検索履歴を保存できる!

会員登録のメリット語彙力診断の実施回数増加!

無料会員に登録する

©2026 GRAS Group, Inc.RSS