std::regex_constants::error_type
|
|
このページは、Google 翻訳を使って英語版から機械翻訳されました。
翻訳には誤りや奇妙な言い回しがあるかもしれません。文章の上にポインタをおくと、元の文章が見れます。誤りを修正して翻訳を改善する手助けをしてください。翻訳についての説明は、ここをクリックしてください。 |
| Defined in header <regex>
|
||
| typedef /*implementation defined*/ error_type; |
(C++11およびそれ以降) | |
| static constexpr error_type error_collate = /*unspecified*/; static constexpr error_type error_ctype = /*unspecified*/; |
(C++11およびそれ以降) | |
error_typeは、正規表現の構文解析中に発生する可能性のあるエラーを記述するタイプです.error_type is a type that describes errors that may occur during regular expression parsing.You can help to correct and verify the translation. Click here for instructions.
| 定数
Original: Constant The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Explanation |
error_collate
|
式が無効な照合要素名が含まれています
Original: the expression contains an invalid collating element name The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_ctype
|
式が無効な文字クラス名が含まれています
Original: the expression contains an invalid character class name The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_escape
|
式が無効なエスケープ文字または末尾のエスケープを含んでいます
Original: the expression contains an invalid escaped character or a trailing escape The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_backref
|
式が無効な後方参照を含んでいます
Original: the expression contains an invalid back reference The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_brack
|
式では、ミスマッチ角括弧( '['と ']')が含まれています
Original: the expression contains mismatched square brackets ('[' and ']') The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_paren
|
式では、ミスマッチの括弧( '('と ')')が含まれています
Original: the expression contains mismatched parentheses ('(' and ')') The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_brace
|
式が一致しない中括弧( '{'と '}')が含まれています
Original: the expression contains mismatched curly braces ('{' and '}') The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_badbrace
|
式が{}式では無効範囲が含まれています
Original: the expression contains an invalid range in a {} expression The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_range
|
式が無効な文字の範囲が含まれている(例えば[BA])
Original: the expression contains an invalid character range (e.g. [b-a]) The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_space
|
有限状態マシンに式を変換するための十分なメモリがありませんでした
Original: there was not enough memory to convert the expression into a finite state machine The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_badrepeat
|
*の一人ですか?+ {有効な正規表現が先行していませんでした
Original: one of *?+{ was not preceded by a valid regular expression The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_complexity
|
未遂マッチの複雑さは、定義済みのレベルを超えた
Original: the complexity of an attempted match exceeded a predefined level The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
error_stack
|
一致を実行するための十分なメモリがありませんでした
Original: there was not enough memory to perform a match The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
[編集] 参照
| (C++11) |
正規表現ライブラリによって生成されたエラーを報告します Original: reports errors generated by the regular expressions library The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (クラス) |

