1153万例文収録!

「String」に関連した英語例文の一覧と使い方(116ページ目) - Weblio英語例文検索


小窓モード

プレミアム

ログイン
設定

設定


セーフサーチ:オン

不適切な検索結果を除外する

不適切な検索結果を除外しない

セーフサーチについて

Stringを含む例文一覧と使い方

該当件数 : 15459



例文

Encode string s using a URL-safe alphabet, which substitutes- instead of + and _ instead of / in the standard Base64 alphabet.例文帳に追加

URL 用に安全なアルファベット集合をもちいて文字列 s をエンコード (符号化) します。 - Python

Negative position values will be treated as being relative to the end of the input string.例文帳に追加

位置を負の値にすると、入力文字列の末端からの相対位置として扱われます。 - Python

The associated value is a string indicating the type of the operands and the operation.例文帳に追加

関連付けられている値は文字列で、その演算における被演算子の型を示します。 - Python

Return the magic string value used to recognize byte-compiled code files (.pyc files).例文帳に追加

バイトコンパイルされたコードファイル(.pycファイル)を認識するために使われるマジック文字列値を返します。 - Python

例文

This module allows a Python program to determine if a string is a keyword.例文帳に追加

このモジュールでは、Pythonプログラムで文字列がキーワードか否かをチェックする機能を提供します。 - Python


例文

Return a string with the name of the character encoding used in the selected locale.例文帳に追加

選択されたロケールで用いられている文字エンコーディングの名前を文字列で返します。 - Python

Return a unique string that has a high likelihood of being usable as apart boundary. 例文帳に追加

パートの境界として使うことができる見込みが高いユニークな文字列を返します。 - Python

Guess the extension for a file based on its MIME type, given by type.The return value is a string giving a filename extension, including the leading dot (".").例文帳に追加

戻り値は、先頭のドット (".")を含む、ファイル拡張子を与える文字列のリストです。 - Python

Returns a string of length 1 containing the character at the current file position, and advances the file position by 1.例文帳に追加

現在のファイル位置から長さ1の文字列を返します。 ファイル位置は1だけ進みます。 - Python

例文

This string represents the flags after they may have been altered by the same call.例文帳に追加

この文字列が表すフラグは同じ呼び出しによってフラグが置き換えられた後のものです。 - Python

例文

The comment argument is a string containing the text between the"!-" and "-" delimiters, but not the delimitersthemselves.例文帳に追加

comment引数は文字列で、"!-" and "-" デリミタ間の、デリミタ自体を除いたテキストが収められています。 - Python

Both statements default to 'pass'; the timer function is platform-dependent (see the module doc string).例文帳に追加

文のデフォルト値は両方とも 'pass' で、タイマ関数はプラットフォーム依存(モジュールの docstring を参照)です。 - Python

Plus signs in the original string are escaped unless they are included in safe.例文帳に追加

もとの文字列におけるプラス記号は safe に含まれていない限りエスケープ置換されます。 - Python

Translate all entity and character references in data and return the translated string.例文帳に追加

data の中にある実体参照と文字参照をすべて変換し、変換後の文字列を返します。 - Python

Returns the Unicode string representation on success, NULL on failure.This is the equivalent of the Python expression"unicode(o)".例文帳に追加

成功するとUnicode 文字列表現を返し失敗すると NULL を返します。 Python 式"unicode(o)" と同じです。 - Python

Calls a method of the object o, where the name of the method is given as a Python string object in name.例文帳に追加

オブジェクト o のメソッドを呼び出します、メソッド名はPython 文字列オブジェクトname で与えます。 - Python

Return a string which specifies the terminal device associated with file-descriptor fd.例文帳に追加

ファイル記述子 fd に関連付けられている端末デバイスを特定する文字列を返します。 - Python

Return a string of n random bytes suitable for cryptographic use.This function returns random bytes from an OS-specificrandomness source. 例文帳に追加

この関数は OS 固有の乱数発生源からランダムなバイト列を生成して返します。 - Python

Matches the empty string, but only when it is not at the beginning or end of a word.例文帳に追加

空文字列とマッチしますが、それが単語の先頭あるいは末尾にない時だけです。 - Python

In the latter case it isup to the caller to ensure that the string contains the proper bits(see the optional built-in module 例文帳に追加

文字列を指定する場合、文字列には適切なビットを設定するようにします。 ( - Python

Writes the string s to the on the object's SSL connection.The return value is the number of bytes written. 例文帳に追加

文字列sをSSL接続で出力します。 戻り値として、送信したバイト数を返します。 - Python

Return the lowest index in the string where substring sub is found, such that sub is contained in the range [start,end).例文帳に追加

文字列中の領域 [start, end) に sub が含まれる場合、その最小のインデクスを返します。 - Python

The separator between elements is the string providing this method.例文帳に追加

文字列を結合するときの区切り文字は、このメソッドを適用する対象の文字列になります。 - Python

Return the highest index in the string where substring sub is found, such that sub is contained within s[start,end].例文帳に追加

文字列中の領域 [start, end) に sub が含まれる場合、その最大のインデクスを返します。 - Python

Return a copy of the string with uppercase characters converted to lowercase and vice versa.For 8-bit strings, this method is locale-dependent.例文帳に追加

文字列をコピーし、大文字は小文字に、小文字は大文字に変換して返します。 - Python

Returns a new string object with the value v and length len on success, and NULL on failure.例文帳に追加

値が v で長さが len の新たな文字列オブジェクトを返します。 失敗すると NULL を返します。 - Python

A character is not a separate datatype but a string of exactly one character. 例文帳に追加

文字列型の要素は文字 (character) です。 文字は個別の型ではなく、1 文字だけからなる文字列です。 - Python

Join a sequence of strings using the given separator and return the resulting Unicode string.例文帳に追加

指定した separator で文字列からなるシーケンスを連結 (join) し、連結結果を Unicode 文字列で返します。 - Python

The string is padded with null bytes if necessary to guaranteed 4 byte alignment.例文帳に追加

4 バイトのアラインメントを保証するために、文字列は必要に応じて null バイト列でパディングされます。 - Python

The XLocaleOfFontSetfunction returns the name of the locale bound to the specified XFontSet,as a null-terminated string. 例文帳に追加

関数XLocaleOfFontSetは、指定したXFontSetにバインドされたロケールの名前を NULL で終わる文字列の形で返す。 - XFree86

If the string is not in the Host Portable CharacterEncoding, the result is implementation-dependent. 例文帳に追加

)文字列のエンコーディングがホストポータブル文字エンコーディングでない場合の結果は実装依存である。 - XFree86

The XParseColor function looks up the string name of a color with respect to the screen associated with the specified colormap.例文帳に追加

関数XParseColorは指定したカラーマップに対応するスクリーンに関して色の名前を調べる。 - XFree86

The returned string is owned by Xlib and should not be freed by the client.例文帳に追加

返される文字列は Xlib が所有しているので、クライアントはこれを解放してはならない。 - XFree86

The XGetErrorText function copies a null-terminated string describing the specified errorcode into the specified buffer. 例文帳に追加

XGetErrorTextは指定したエラーコードを説明する NULL で終わる文字列を指定したバッファにコピーする。 - XFree86

The width member is set to the sum of the character-widthmetrics of all characters in the string. 例文帳に追加

width メンバには、文字列中のそれぞれの文字の幅の寸法の総和が設定される。 - XFree86

If the font has no defined default_char, the undefined characters in the string are also ignored.例文帳に追加

フォントにデフォルト文字が定義されていない場合、文字列中の未定義文字も無視される。 - XFree86

The XmbTextEscapement, XwcTextEscapement and Xutf8TextEscapement functions return the escapement in pixels of the specified string as a value, using the fonts loaded for the specified font set.例文帳に追加

この際には指定されたフォントセットに対してロードされたフォントが使われる。 - XFree86

This system needsa string representation of the principal which identifies the associatedX server. 例文帳に追加

"SUN-DES-1"このシステムは、関連する X サーバを識別するプリンシパルの文字列表現を必要とする。 - XFree86

A substitution field entry ofNULL is equivalent to a pointer to an empty string. 例文帳に追加

\\fIsubstitution\\fP フィールドに NULL を指定することは、空文字列へのポインタを指定することと等価である。 - XFree86

This option permits you to specify a different string for makedepend to look for in the makefile. -wwidth例文帳に追加

このオプションを使うと、makedependが makefile 内で別の区切り文字列を探すように指定できる。 - XFree86

The default format string is ``L%l'', which shows the character ``L'' followed by the line number.例文帳に追加

デフォルトの書式文字列は ``L%l'' である。 これは、文字 ``L'' の後に行番号を表示する。 - XFree86

ispell.workingLabel (Class ispell.Status) The string displayed in the ispell status bar while xedit is communicating with ispell.例文帳に追加

ispell.workingLabel (Class ispell.Status)xedit が ispell と通信している間に ispell の状態表示バーに表示する文字列を指定する。 - XFree86

metricsFormat Specifies a printf-style format string used to display character metrics.例文帳に追加

metricsFormat文字のメトリックの表示に際して、printf スタイルのフォーマットである文字列の使用を指定する。 - XFree86

The arguments that will come after the format string are the character metrics width, lbearing, rbearing,character ascent, character descent, font ascent, and font descent.例文帳に追加

フォーマットされた文字列の後に続く引き数は、文字のメトリック width, lbearing, rbearing,character ascent, character descent, font ascent, font descent である。 - XFree86

title(class Title) Specifies a string that may be used by the window managerwhen displaying this application. 例文帳に追加

"title (class Title)"このアプリケーションを表示するときに、ウィンドウマネージャが用いる文字列を指定する。 - XFree86

Quotation is necessary if the string contains whitespace or non-alphanumeric characters.例文帳に追加

文字列が空白文字や英数字以外の文字を含む場合にはクォートする必要がある。 - XFree86

For the same reason, it is believed that the natural cutting of string doesn't necessarily mean bad luck. 例文帳に追加

また、自然に切れた場合も、前記の理由により縁起が悪い訳では無いとされる。 - Wikipedia日英京都関連文書対訳コーパス

PROGRAM, DEVICE AND METHOD FOR ADJUSTING RECOGNITION DISTANCE AND PROGRAM FOR RECOGNIZING CHARACTER STRING例文帳に追加

認識距離を調整するプログラム、装置および方法、ならびに文字列を認識するプログラム - 特許庁

A front connector 151 (first member) is fixed to one end of a cord 140 (string body).例文帳に追加

第一コネクタ151(第一部材)は、紐140(紐状体)の一端に固定されている。 - 特許庁

例文

An index registering part 126 associates logical position information of the web page 20 and an enhancement attribute about a character string being an extraction source of a word with the word extracted from the character string by a character string analyzing part 125 to register them in an index file 310.例文帳に追加

索引登録部126は、該文字列から文字列解析部125によって抽出された単語に、Webページ20の論理的な位置情報と該単語の抽出元の文字列についての強調属性とを対応付けて索引ファイル310に登録する。 - 特許庁




  
本サービスで使用している「Wikipedia日英京都関連文書対訳コーパス」はWikipediaの日本語文を独立行政法人情報通信研究機構が英訳したものを、Creative Comons Attribution-Share-Alike License 3.0による利用許諾のもと使用しております。詳細はhttp://creativecommons.org/licenses/by-sa/3.0/ および http://alaginrc.nict.go.jp/WikiCorpus/ をご覧下さい。
  
Copyright © Japan Patent office. All Rights Reserved.
  
この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。
  
Copyright (C) 1994-2004 The XFree86®Project, Inc. All rights reserved. licence
Copyright (C) 1995-1998 The X Japanese Documentation Project. lisence
  
Copyright 2001-2004 Python Software Foundation.All rights reserved.
Copyright 2000 BeOpen.com.All rights reserved.
Copyright 1995-2000 Corporation for National Research Initiatives.All rights reserved.
Copyright 1991-1995 Stichting Mathematisch Centrum.All rights reserved.
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

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

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

無料会員に登録する
英→日 日→英
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

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

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

無料会員に登録する

©2026 GRAS Group, Inc.RSS