| 意味 | 例文 |
Regular expressionの部分一致の例文一覧と使い方
該当件数 : 152件
If endpos is less thanpos, no match will be found, otherwise, if rx is a compiled regular expression object,例文帳に追加
もし endpos が posより小さければ、マッチは見つかりませんが、そうでなくて、もしrx がコンパイルされた正規表現オブジェクトであれば、 - Python
A promoter having specific expression activity at the specific site of the seed and higher activity than those of regular promoters and known seed-specific promoters has been found by examining expression sites by each promoter, expression during the maturation process of the seeds and expression intensity in the seeds, using GUS expression amount as an index.例文帳に追加
GUS発現量を指標として、各プロモーターによる発現部位、種子成熟過程での発現、さらに種子での発現強度を検討したところ、種子の特定部位に特異的発現活性を有し、恒常的プロモーターや既知の種子特異的プロモーターと比較して高い活性をもつプロモーターを見出した。 - 特許庁
The restored search condition 330 is corrected and adjusted by a user, and the corrected and adjusted search condition 330 is input to the regular expression generating device 200 to generate regular expression data of the corrected and adjusted search condition.例文帳に追加
復元された検索条件330は、ユーザにより修正や調整がなされ、修正・調整後の検索条件330が正規表現生成装置200に入力されて、修正・調整後の検索条件の正規表現データが生成される。 - 特許庁
Each restriction is either an integer (to select a count of lines), or a decimal fraction between0.0 and 1.0 inclusive (to select a percentage of lines), or a regular expression (to pattern match the standard name that is printed; as of Python 1.5b1, this uses the Perl-style regular expression syntaxdefined by the例文帳に追加
制限の指定は(行数を指定する)整数、(行のパーセンテージを指定する) 0.0 から 1.0 までの割合を指定する小数、(出力する standard name にマッチする)正規表現のいずれかを使っておこないます。 正規表現は Python 1.5b1 で導入された - Python
A regular tree structure expression extracting part 14 extracts a tree structure expression for indicating corresponding rules from the tree structure and the annotation and stores it in an information extraction rule storage part 15.例文帳に追加
木構造正規表現抽出部14は、木構造およびアノテーションから、対応する規則を表示する木構造表現を抽出し、情報抽出規則記憶部15に記憶される。 - 特許庁
The second field is the device group, starting from /dev. It is a regular expression, meaning you can select several device files in one rule.例文帳に追加
これは正規表現で、ひとつのルールでいくつかのデバイスを選択可能です。 4番目の欄は、デバイス・ファイルの所有権です。 - Gentoo Linux
The `r' suffix causes the regular expression of the last search to be used instead of the that of the last substitution. 例文帳に追加
m rサフィックスが指定されると、最後の置換が発生した文字列の変わりに、最後に指定した正規表現が使用されます。 - JM
Group names must be valid Python identifiers, and each group name must be defined only once within a regular expression.例文帳に追加
グループ名は、正しい Python識別子でなければならず、各グループ名は、正規表現内で一度だけ定義されなければなりません。 - Python
A regular expression analysis part 32 extracts a first independent word included in a first pattern stored in a pattern matching dictionary 24.例文帳に追加
正規表現解析部32は、パターンマッチ辞書24に格納されている第1のパターンに含まれる第1の自立語を抽出する。 - 特許庁
Return a regular expression that can be used with the regex function to recognize a positive response to a yes/no question.例文帳に追加
肯定/否定で答える質問に対する肯定回答を正規表現関数で認識するために利用できる正規表現を返します。 - Python
Return a regular expression that can be used with the regex(3)function to recognize a negative response to a yes/no question. 例文帳に追加
肯定/否定で答える質問に対する否定回答を正規表現関数で認識するために利用できる正規表現を返します。 - Python
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
Thus, the regular path expression question in a core user question form of the XML can be stably and promptly processed irrespective of a description form of the user.例文帳に追加
よって、XMLの核心的なユーザ質疑形式の正規経路式質疑をユーザによる記述形式と無関係に安定的で且つ速く処理できる。 - 特許庁
If it is possible for a regular expression to match several strings in a line, then the left-most longest match is the one selected. 例文帳に追加
ある正規表現が一つの行の中の複数の文字列にマッチする場合、マッチする部分のうち最も左にあって最も長いものが選択されます。 - JM
(1,$)v /re/command-list Applies command-list to each of the addressed lines not matching a regular expression re . 例文帳に追加
t (1,$)v/re/command-list指定した範囲の行のうち、指定した正規表現r reと一致する文字列が含まれていない行について、r command-listで指定したコマンドを実行します。 - JM
In the Find box, type the text or regular expression and press Enter.The IDE finds any matching components and highlights the matches in the WSDL view. 例文帳に追加
「検索」ボックスに、検索するテキストまたは正規表現を入力し、Enter キーを押します。 一致するコンポーネントが検索され、「WSDL」ビューで強調表示されます。 - NetBeans
Both of these methods accept an optional boolean parameter that specifies whether your match string should be treated as a Perl Compatible Regular Expression. 例文帳に追加
これらのメソッドはどちらも、オプションで boolean 型のパラメータを指定できます。 これは、指定した文字列を Perl 互換の正規表現として扱うかどうかを指定するものです。 - PEAR
A|B, where A and B can be arbitrary REs,creates a regular expression that will match either A or B. Anarbitrary number of REs can be separated by the "|" in this way.例文帳に追加
A|B は、ここで A と B は任意の RE ですが、A か B のどちらかとマッチする正規表現を作成します。 任意個数の RE を、こういう風に "|" で分離することができます。 - Python
module is a string containing a regular expression that the modulename must match (the match is compiled to be case-sensitive) 例文帳に追加
module は正規表現を含む文字列で、モジュール名はこのパタンに一致しなければなりません (照合時には常に大小文字の区別をしないようにコンパイルされます)。 - Python
To efficiently achieve a regular expression with a high frequency of character repetition on less circuit scale in a character string matching circuit with an NFA directly embedded in hardware.例文帳に追加
NFAをハードウェアに直接埋め込む形の文字列照合回路において、文字の繰り返し回数の大きい正規表現を少ない回路規模で効率的に実現する。 - 特許庁
The image recognition unit 103 includes a face detection unit 103A, an expression detection unit 103B, a character detection unit 103C and a regular portion detection unit 103D.例文帳に追加
画像認識部103は、顔検出部103A、表情検出部103B、文字検出部103C、および規則性部分検出部103Dとを備える。 - 特許庁
The structure of a path lookup table and an extensible trunk table is presented and a regular path expression with an optional length is processed only by a single join by using the tables.例文帳に追加
経路ルックアップテーブル及び拡張幹線テーブルの構造を提示し、これらテーブルを用いて任意長さの正規経路式をただ一回のジョインにより処理することができる。 - 特許庁
Each watch element symbolizes a single rule, containing a regular expression to search for, one or more conditions to evaluate and one or more actions to be taken.例文帳に追加
個々の watch要素が、それぞれひとつのルールを表します。 検索に使用する正規表現や評価条件、そして実行するアクションといった内容がその中に含まれます。 - PEAR
message is a string containing a regular expression that the warning message must match (the match is compiled to always be case-insensitive)例文帳に追加
message は正規表現を含む文字列で、メッセージはこのパタンに一致しなければなりません (照合時には常に大小文字の区別をしないようにコンパイルされます)。 category はクラス (Warning のサブクラス) です。 - Python
Expression (I) 1.92<γ, wherein γ represents a diffusion angle giving a 1/10 intensity of the diffusion intensity obtained by extrapolating a straight line that connects the reflection intensity at the angle of ±2 degrees and the reflection intensity at the angle of ±1 degree with respect to the regular reflection direction of diffusion, toward the regular reflection angle of diffusion.例文帳に追加
1.92<γ (I)γ;拡散正反射方向に対して±2度での反射強度と±1度での反射強度とを結ぶ直線を拡散正反射角度に外挿した拡散強度の1/10の強度を示す拡散角度 - 特許庁
This demo covers smart code completion including regular expression completion,Ruby documentation window (rdoc), syntax coloring,class navigation, hyperlinking, code formating, refactoring,switching between Ruby/JRuby. 例文帳に追加
このデモでは、正規表現の補完、Ruby ドキュメントのウィンドウ (rdoc)、構文の色分け、クラスへの移動、ハイパーリンク、コードの整形、リファクタリング、Ruby と JRuby の切り替えを含むスマートコード補完について説明しています。 - NetBeans
Matches whatever regular expression is inside the parentheses, and indicates the start and end of a group; the contents of a group can be retrieved after a match has been performed, and can be matched later in the string with the number例文帳に追加
丸括弧の中にどのような正規表現があってもマッチし、またグループの先頭と末尾を表します;グループの中身は、マッチが実行された後に検索され、後述する number - Python
The uncertainty of character cutout or character recognition is modeled as a directed graph called a character string hypothesis, and this is analyzed by notation knowledge based on quasi-regular expression to determine a character string.例文帳に追加
文字切出や文字認識の不確定さを文字列仮説と呼ばれる有向グラフとしてモデル化し、これを準正規表現に基づく表記知識によて解析を行い、文字列を確定する。 - 特許庁
When the filter coefficients of an FIR filter are calculated in a regular phase shifting apparatus arranged in the pre-stage of an equalizing apparatus which performs the equalization processing of an input signal, a tap coefficient arithmetic operation is performed in which the regular phase characteristics is applied to the expression of inverse discrete Fourier transformation and tap coefficients is calculated beforehand in a expression of relation with a phase rotation angle θ.例文帳に追加
入力信号の等化処理を行なう等化装置の前段に定常位相推移装置を設け、この定常位相推移装置において、FIRフィルタのフィルタ係数を求める場合に、定常位相特性を逆離散フーリエ変換の式にあてはめあて予めタップ係数を位相回転角θとの関係式にして求めるタップ係数演算を行なう。 - 特許庁
A description related to the attribute is identified from the source code, and an extraction condition by a regular expression is set to store an attribute value that is a character string or a numerical value in a reference variable $1 or the like.例文帳に追加
また、ソースコードから属性に関する記述を特定し、文字列あるいは数値である属性値を参照変数$1などに格納させるため正規表現による抽出条件を設定させる。 - 特許庁
The extraction pattern files are not affected by a grammar of a language used for the extraction object documents since disposition patterns of the various data and contents data are described with a regular expression.例文帳に追加
また、抽出パターンファイルは、種別データと内容データとの配置パターンを正規表現にて記載するだけなので、抽出対象文書に使用されている言語の文法などの影響を受けることはない。 - 特許庁
By this position measuring method, the position (XB, YB) of the mobile station is found by a regular analysis expression which is used when carrier waves can be received from four satellites while the elliptic body height of the mobile station is made constant.例文帳に追加
位置測定方法は、4個の衛星からの搬送波を受信可能なときに用いる正規解析式に於て、移動局の楕円体高を一定として、移動局の位置(XB、YB)の位置を求める。 - 特許庁
Subsequently, by use of a second coordinate relational expression showing correspondence relation between the coordinates S(x, y) and coordinates T(u, v), the virtual lens distortion circular image S is further converted into the planar regular image T.例文帳に追加
続いて、座標S(x,y)と座標T(u,v)との対応関係を示す第2の座標関係式を用いて、仮想のレンズ歪曲円形画像Sを、更に平面正則画像Tに変換する。 - 特許庁
This method for detecting the disease or disease marker in the human test specimens is provided by comprising the measurement of the changing amount of expressed amount of at least 1 kind of a diagnostic gene or diagnostic candidate gene against the expressed amount of at least 1 kind of a regular expression gene selected from the specific kinds of the regular expression genes, The DNA microarray used for such the method is also provided.例文帳に追加
ヒト被検試料における疾患又は疾患マーカーの検出方法であって、特定の種類の定常発現遺伝子から選択される少なくとも1種の定常発現遺伝子の発現量に対する、少なくとも1種の診断用遺伝子又は診断用候補遺伝子の発現量の変動量を測定することを含む方法、ならびに、このような方法に使用するためのDNAマイクロアレイ。 - 特許庁
A coordinate conversion section 270 performs mutual conversion of a coordinate (x, y) within the memory 220 and a coordinate (u, v) within a memory 230 by a conversion expression using the coefficients A-F to obtain a planar regular image.例文帳に追加
座標変換部270は、この係数A〜Fを用いた変換式により、メモリ220内の座標(x,y)とメモリ230内の座標(u,v)との相互変換を行い、メモリ230内に平面正則画像を得る。 - 特許庁
A set of patterns represented by regular expression is learned from a set of the finite number of previously given Katakana character string group having different notation and the same meaning, conversion processing using the set of the patterns is performed and collation processing is subsequently performed.例文帳に追加
事前に与えた有限個の異表記同義カタカナ文字列群の集合から、正規表現により表されるパターンの集合を学習し、それを用いた変換処理を行ってから照合処理を行う。 - 特許庁
The image recognition unit 103 detects from the image data a variety of information, including face information, expression type information, character portion information and regular portion information, and outputs them as image feature quantities to the image processing unit 104.例文帳に追加
画像認識部103は、画像データから顔情報、表情種別情報、文字部分の情報、規則性部分情報などの各種情報を検出して画像特徴量として画像加工部104に出力する。 - 特許庁
This means that signals arriving during long calculations implemented purely in C(such as regular expression matches on large bodies of text) may be delayed for an arbitrary amount of time.例文帳に追加
従って、(巨大なサイズのテキストに対する正規表現の一致検索のような) 純粋に C 言語のレベルで実現されている時間のかかる処理中に到着したシグナルは、不定期間遅延する可能性があります。 - Python
To provide a date querying system which processes free-form text in documents to identify and locate some or all of the dates in the documents using extended regular expression matching to capture various date formats.例文帳に追加
ドキュメントの自由形式テキストを処理して、ドキュメント内の日付の一部もしくは全部を様々な日付フォーマットを捕獲する拡張正規表現マッチングを使用して識別、位置づける日付照会システムを提供する。 - 特許庁
According to this, a character string notation analysis robust to deterioration of an image to be read (character omission, contact, noise inclusion, etc.) can be realized to compactly express the fluctuation of character string notation by use of quasi-regular expression.例文帳に追加
これにより読取対象画像の劣化(文字欠落、接触、ノイズ混入等)に対してロバストな文字列表記解析を実現し、文字列表記の揺れを準正規表現を使ってコンパクトに表現できるようにする。 - 特許庁
The magnetic recording medium comprising alloy nano particles composed of a CuAu type or Cu_3Au type ferromagnetic regular alloy phase and having 7 to 12 nm particle diameter is characterized in that conditional expression (1): 1,004.8<V×Mr/Hc<2,763.2 is satisfied.例文帳に追加
CuAu型あるいはCu_3Au型強磁性規則合金相からなる粒径7〜12nmの合金ナノ粒子を含む磁気記録媒体であって、次の条件式(1)を満足することを特徴とする磁気記録媒体である。 - 特許庁
To provide a novel layered food that shows neat aftertaste, differs in the taste expression from the conventional layered food and can give regular patterns in the inner layers and on the appearance with good pattern float and a new type of texture.例文帳に追加
現状の層状食品とは味の発現が異なり、後味のスッキリした、しかも内層、外観に規則的に模様を施しながらコントロールをすることが出来、浮きが良く、食感も新規な層状食品を提供すること。 - 特許庁
If a group is contained in apart of the pattern that matched multiple times, the last match isreturned.If the regular expression uses the (?Pname...) syntax,the groupN arguments may also be strings identifying groups by their group name.例文帳に追加
もしグループが、複数回マッチしたパターンの一部に含まれていれば、最後のマッチが返されます。 もし正規表現が (?Pname...) シンタクスを使うならば、groupN引数は、それらのグループ名によってグループを識別する文字列であっても構いません。 - Python
The NFA circuit includes character string comparators 102-104, flip-flops 105-108, AND circuits 109-111, and gated buffers 112-114, and detects whether the character strings represented by regular expression /abc/ are included in an input data terminal 101 or not.例文帳に追加
NFA回路は、文字列比較器102〜104、フリップフロップ105〜108、論理積回路109〜111、ゲーテッドバッファ112〜114を含み、入力データ端子101に正規表現/abc/で表される文字列が含まれているかを検出する。 - 特許庁
To improve efficiency in retrieval and to simplify a program by unnecessitating the reference of an original document by performing processing while referring to an index even in the case of executing retrieval based on a regular expression in full sentence retrieval.例文帳に追加
全文検索において、正規表現による検索を行なう場合でも索引を参照して処理を行なうことにより、元の文書の参照を不要にして、検索の効率を向上させると共に、プログラムの単純化を実現すること。 - 特許庁
The present invention provides also an evaluation device including at least a means for measuring a regular reflection (limit width) glossiness, a full width glossiness and a mapping property value, and for evaluating the feeling of the gloss, using the calculation value obtained by the expression shown hereinafter as the index of the gloss feeling value.例文帳に追加
また、本発明は、正反射(限幅)光沢度と、全幅光沢度と、写像性値と、を測定する手段を少なくとも含む装置であって、下記式で得られる算出値を光沢感覚値として指標する光沢感の評価装置を提供する。 - 特許庁
By using regular expression pattern matching to a wild card character part of the search key character string and other parts and performing fuzzy search, one which is more likely to match than a searched character string having a plurality of spelling mistakes are extracted.例文帳に追加
この検索キー文字列のワイルドカード文字部分、およびその他の部分に正規表現パターンマッチングを用いてあいまい検索することにより、複数の綴り間違いがある被検索文字列より、一致する可能性のあるものを抽出することを可能とする。 - 特許庁
Article 53-3 The provisions of Article 46 and Article 46-2 shall apply mutatis mutandis to the registration in paragraph (2) of Article 41. The provisions of Article 47 through the preceding Article shall apply mutatis mutandis to registered agencies for regular inspection. In this case, the expression shown in the middle column of the table below that are used in the provisions listed in the corresponding left column shall read as the expression listed in the corresponding right column. 例文帳に追加
第五十三条の三 第四十六条及び第四十六条の二の規定は第四十一条第二項の登録について、第四十七条から前条までの規定は登録性能検査機関について準用する。この場合において、次の表の上欄に掲げる規定中同表の中欄に掲げる字句は、それぞれ同表の下欄に掲げる字句と読み替えるものとする。 - 日本法令外国語訳データベースシステム
This document processing system is provided with an automaton constructing part 210 constructing an indeterminative finite state automaton from the regular expression of a character string and constructing the determinative finite state automaton based on the indeterminative finite state automaton and an automaton deciding part for performing a matching for character strings by using the determinative finite state automaton.例文帳に追加
文字列の正規表現から非決定性有限状態オートマトンを構築し、この非決定性有限状態オートマトンに基づいて決定性有限状態オートマトンを構築するオートマトン構築部210と、この決定性有限状態オートマトンを用いて文字列のマッチングを行うオートマトン判定部240とを備える。 - 特許庁
| 意味 | 例文 |
| Copyright © Japan Patent office. All Rights Reserved. |
| ※この記事は「日本法令外国語訳データベースシステム」の2010年9月現在の情報を転載しております。 |
| この対訳コーパスは独立行政法人情報通信研究機構の研究成果であり、Creative Commons Attribution-Share Alike 3.0 Unportedでライセンスされています。 |
| © 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. |
| Copyright © 2001 - 2008 by the PEAR Documentation Group. This material may be distributed only subject to the terms and conditions set forth in the Open Publication License, v1.0 or later (the latest version is presently available at http://www.opencontent.org/openpub/ ). |
| 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. |
| Copyright 2001-2010 Gentoo Foundation, Inc. The contents of this document are licensed under the Creative Commons - Attribution / Share Alike license. |
| 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. |
|
ログイン |
Weblio会員(無料)になると
|
|
ログイン |
Weblio会員(無料)になると
|
