1153万例文収録!

「substring」に関連した英語例文の一覧と使い方 - Weblio英語例文検索


小窓モード

プレミアム

ログイン
設定

設定

Weblio 辞書 > 英和辞典・和英辞典 > substringの意味・解説 > substringに関連した英語例文

セーフサーチ:オフ

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

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

セーフサーチについて

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

該当件数 : 52



例文

substring of 例文帳に追加

文字列 - JM

For each substring matching the regular expression 例文帳に追加

文字列 - JM

is a single digit, matches the substring 例文帳に追加

が 1 つの数字であるような - JM

It returns NULL if needle does not occur as a substring in haystack. 例文帳に追加

needle が haystack の部分文字列でなければNULL を返す。 - JM

例文

function returns a pointer to the beginning of the substring, or NULL if the substring is not found. 例文帳に追加

関数は、部分文字列の開始を指すポインタを返し、もし部分文字列が見つからない場合は NULL を返す。 - JM


例文

These functions return a pointer to the beginning of the substring, or NULL if the substring is not found. 例文帳に追加

これらの関数は、部分文字列の開始を指すポインタを返し、もし部分文字列が見つからない場合は NULL を返す。 - JM

The substring of STR beginning at byte number START and extending for LEN bytes. 例文帳に追加

STR の START から始まって LEN byte まで伸びている部分文字列。 - JM

The test is that the matching substring must either be at the 例文帳に追加

マッチする部分文字列が行頭から始まっているか、 - JM

Return the substring of string beginning at position with 例文帳に追加

string の部分文字列を返す。 部分文字列は string の position から始まり、 - JM

例文

Substring indexing is zero-based unless the positional parameters are used, in which case the indexing starts at 1. 例文帳に追加

位置パラメータの場合には、インデックスは 1 から始まります。 - JM

例文

Return the number of occurrences of substring sub in stringS[start:end]. 例文帳に追加

文字列 S[start:end] 中に部分文字列 sub が出現する回数を返します。 - Python

with substring match addresses. 例文帳に追加

の実行によって、それらに部分文字列マッチング位置情報が代入される。 - JM

is true if and only if x is a substring of y.例文帳に追加

は x が y の部分文字列であるとき、かつそのときに限り真になります。 - Python

Return the indices of the start and end of the substring matched by group; group defaults to zero (meaning the wholematched substring).Return -1 if group exists but did not contribute to the match.例文帳に追加

groupとマッチしたサブ文字列の先頭と末尾のインデックスを返します;group は、デフォールトでは (マッチしたサブ文字列全体を意味する)ゼロです。 - Python

To issue each password so that a frequency each pattern of a substring appears in a character substring included in each password is below a predetermined level.例文帳に追加

各パスワードに含まれる文字の部分列について、部分列の各パターンが出現する頻度を、所定の水準以下にするように、各パスワードを発行すること。 - 特許庁

In the event that an RE could match more than one substring of a given string, the RE matches the one starting earliest in the string. 例文帳に追加

正規表現が、与えられた文字列の複数の部分文字列(substring) にマッチできるような場合には、最も先頭の近くから始まるものにマッチする。 - JM

REG_NOSUB Support for substring addressing of matches is not required. 例文帳に追加

関数を呼び出すと、大文字小文字の区別を付けずに検索が行われる。 - JM

Substring returns the substring of the first argument starting at the position specified in the second argument with the length specified in the third argument. 例文帳に追加

部分文字列は、第 1 引数の部分文字列として、第 2 引数で指定された位置から始まり、第 3 引数で指定された長さの文字列を返します。 - NetBeans

For a match objectm, and a group g that did contribute to the match, the substring matched by group g (equivalent to例文帳に追加

group が存在してもマッチに寄与しなかった場合は、-1 を返します。 - Python

Each main string includes: a first ground selection transistor connected to the first substring; a first substring selection transistor connected to the first ground selection transistor; a second ground selection transistor connected to the second substring; and a second substring selection transistor connected to the second ground selection transistor.例文帳に追加

それぞれのメインストリングは、第1サブストリングに連結される第1接地選択トランジスタと、第1接地選択トランジスタに連結される第1サブストリング選択トランジスタと、第2サブストリングに連結される第2接地選択トランジスタと、第2接地選択トランジスタに連結される第2サブストリング選択トランジスタと、を備える。 - 特許庁

If the substring matches more than one job, bash reports an error. 例文帳に追加

部分文字列がマッチするジョブが複数個ある場合には、bashはエラーを報告します。 - JM

function finds the first occurrence of the substring needle in the string haystack. 例文帳に追加

関数は、部分文字列 needle が文字列 haystack 中で最初に現れる位置を見つける。 - JM

Substring Before returns the substring of the first argument string that precedes the first occurrence of the second argument string in the first argument string. 例文帳に追加

前方部分文字列は、第 1 引数の部分文字列として、第 1 引数の文字列内で第 2 引数の文字列が最初に現れる場所より前にある文字列を返します。 - NetBeans

Substring After returns the substring of the first argument string that follows the first occurrence of the second argument string in the first argument string. 例文帳に追加

後方部分文字列は、第 1 引数の部分文字列として、第 1 引数の文字列内で第 2 引数の文字列が最初に現れる場所の直後にある文字列を返します。 - NetBeans

function returns the address of the substring if a match is found and NULL otherwise. 例文帳に追加

関数は、マッチした場合は部分文字列へのアドレスを返し、マッチしなければ NULL を返す。 - JM

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

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

If set to the value exact , the string supplied must match the name of a stopped job exactly; if set to substring , the string supplied needs to match a substring of the name of a stopped job. 例文帳に追加

HISTCONTROLignorespaceの値が設定されていると、空白文字で始まる行は履歴リストに入りません。 ignoredupsの値が設定されていると、履歴の最後の行にマッチする行は履歴リストに入りません。 - JM

To raise possibility of specifying a position on a medium by a substring acquired from a pattern image.例文帳に追加

パターン画像から取得した部分列により媒体上の位置を特定できる可能性を高める。 - 特許庁

Systems which use a unique language and code set for all manual pages may omit the <locale> substring. 例文帳に追加

すべてのマニュアルページで同じ言語とコードセットを使用するシステムでは、<locale>は省略されることがある。 - JM

Character expressions can be concatenated to each other or to substring notations in any order 例文帳に追加

文字式は,別の文字式またはサブストリング表記と,どんな順序にでも連結させることができる - コンピューター用語辞典

Substring conforming to the delayed time is selected from the receiving data string and supplied to a multiplier 54.例文帳に追加

その受信データ列から遅延時間に応じた部分列が選択されて乗算器54に供給される。 - 特許庁

A string v is a substring of a string u if u=u'vu" for some prefix u' and suffix u". 例文帳に追加

列vは次の場合に列uの部分列である。すなわち、接頭辞u'と接尾辞u"があってu=u'vu"であるとき。 - コンピューター用語辞典

If length is omitted, expands to the substring of parameter starting at the character specified by offset. 例文帳に追加

length を省略すると、offset で指定した文字を先頭にして、parameter の残り全部が含まれる部分文字列に展開します。 - JM

If the RE could match more than one substring starting at that point, it matches the longest. 例文帳に追加

その位置から始まり、正規表現がマッチできる部分文字列が複数ある場合には、最長のものにマッチする。 - JM

The substring notation can be used to select any contiguous section of any character variable or array element. 例文帳に追加

サブストリング表記法は、任意の文字変数あるいは配列要素の連続セクションを選択するのに用いられる。 - コンピューター用語辞典

In this way, delayed receiving data conforming to the delayed time is formed from a plurality of receiving data comprising the substring.例文帳に追加

こうして、部分列を構成する複数の受信データから遅延時間に応じた遅延受信データが形成される。 - 特許庁

The multiplier 54 is supplied with each of a plurality of receiving data comprising the substring step by step from the memory 40.例文帳に追加

乗算器54には、部分列を構成する複数の受信データの各々が段階的にメモリ40から供給される。 - 特許庁

function finds the start of the first occurrence of the substring needle of length needlelen in the memory area haystack of length haystacklen. 例文帳に追加

関数は、haystacklen の大きさを持つメモリ領域 haystack の中でneedlelen の大きさを持つ部分文字列 needle が最初に現れる位置を見つける。 - JM

Similar to regular parentheses, but the substring matched by the group is accessible via the symbolic groupname name.例文帳に追加

正規表現の丸括弧と同様ですが、グループによってマッチされたサブ文字列は、記号グループ名nameを介してアクセスできます。 - Python

When s is a string or Unicode string object the in and not in operations act like a substring test.例文帳に追加

s が文字列または Unicode 文字列の場合、 演算操作 in および not in は部分文字列の一致テストと同じように動作します。 - Python

This can be used to efficiently compute the digests of strings that share a commoninitial substring.例文帳に追加

このコピーは最初の部分文字列が共通になっている文字列のダイジェスト値を効率よく計算するために使うことができます。 - Python

When specified, an ellipsis marker (...) in the expected output can match any substring in the actual output.例文帳に追加

このフラグを指定すると、予想出力中の省略記号マーカ (...) を実際の出力中の任意の部分文字列に一致させられます。 - Python

A job may also be referred to using a prefix of the name used to start it, or using a substring that appears in its command line. 例文帳に追加

ジョブの参照には、ジョブを起動する時に使った名前の先頭部分やコマンドライン中に現われる部分文字列を使うこともできます。 - JM

Since they're mutable, you can change a single character by doing obj[index] = 'a', or change a substring by assigning to a slice:obj[i1:i2] = '...'.例文帳に追加

それらは可変なので、 obj[index] = 'a' のように文字を変換できますし、スライスを使うことでobj[i1:i2] = '...' のように部分文字列を変換することができます。 - Python

If the third argument is not specified, then the function returns the substring starting at the position specified in the second argument and continuing to the end of the string. 例文帳に追加

第 3 引数が指定されなかった場合、この関数は、第 2 引数で指定された位置から始まって文字列の終わりまで続く部分文字列を返します。 - NetBeans

For one or all of a plurality of consecutive substrings, the information processor selects a received sentence candidate identical with or most similar to the substring(s) as a received sentence by referring to a storage unit (12).例文帳に追加

1又は連続する複数の部分文字列の全てに対して、記憶部(12)を参照し、一致し又は最も類似する受信文候補を受信文として選択する。 - 特許庁

When not performing substring expansion, bash tests for a parameter that is unset or null; omitting the colon results in a test only for a parameter that is unset. 例文帳に追加

部分文字列展開以外の場合、bash はパラメータが設定されているか、空ではないかを調べます。 コロンを省略した場合には設定されているかどうかのみを調べます。 - JM

It can be used to split a wide-character string wcs into tokens, where a token is defined as a substring not containing any wide-characters from delim. 例文帳に追加

この関数を用いて、ワイド文字文字列 wcs をトークンに分解することができる。 ここで、トークンは delim に列挙されている文字を含まない部分文字列として定義される。 - JM

例文

A non-grouping version of regular parentheses.Matches whatever regular expression is inside the parentheses, but the substring matched by the group cannot be retrieved after performing a match or referenced later in the pattern.例文帳に追加

どのような正規表現が丸括弧内にあってもマッチしますが、グループによってマッチされたサブ文字列は、マッチを実行したあと検索されることも、あるいは後でパターンで参照されることも できません。 - Python




  
Copyright © Japan Patent office. All Rights Reserved.
  
コンピューター用語辞典
Copyright (C) 1994- Nichigai Associates, Inc., All rights reserved.
  
この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。
  
Copyright (c) 2001 Robert Kiesling. Copyright (c) 2002, 2003 David Merrill.
The contents of this document are licensed under the GNU Free Documentation License.
Copyright (C) 1999 JM Project All rights reserved.
  
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.
  
© 2010, Oracle Corporation and/or its affiliates.
Oracle and Java are registered trademarks of Oracle and/or its affiliates.Other names may be trademarks of their respective owners.
こんにちは ゲスト さん

ログイン

Weblio会員(無料)になると

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

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

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

ログイン

Weblio会員(無料)になると

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

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

無料会員に登録する

©2026 GRAS Group, Inc.RSS