-
-
-
-
正規表現の演算
-
This content has been machine translated dynamically.
Dieser Inhalt ist eine maschinelle Übersetzung, die dynamisch erstellt wurde. (Haftungsausschluss)
Cet article a été traduit automatiquement de manière dynamique. (Clause de non responsabilité)
Este artículo lo ha traducido una máquina de forma dinámica. (Aviso legal)
此内容已经过机器动态翻译。 放弃
このコンテンツは動的に機械翻訳されています。免責事項
이 콘텐츠는 동적으로 기계 번역되었습니다. 책임 부인
Este texto foi traduzido automaticamente. (Aviso legal)
Questo contenuto è stato tradotto dinamicamente con traduzione automatica.(Esclusione di responsabilità))
This article has been machine translated.
Dieser Artikel wurde maschinell übersetzt. (Haftungsausschluss)
Ce article a été traduit automatiquement. (Clause de non responsabilité)
Este artículo ha sido traducido automáticamente. (Aviso legal)
この記事は機械翻訳されています.免責事項
이 기사는 기계 번역되었습니다.책임 부인
Este artigo foi traduzido automaticamente.(Aviso legal)
这篇文章已经过机器翻译.放弃
Questo articolo è stato tradotto automaticamente.(Esclusione di responsabilità))
Translation failed!
正規表現の演算
次の表では、正規表現を操作する演算子について説明します。特定の高度なポリシー式で正規表現演算子によって実行される操作は、式のプレフィックスがテキストヘッダーまたは HTTP ヘッダーを識別するかどうかによって異なります。ヘッダーを評価する操作は、指定されたヘッダータイプのすべてのインスタンスのテキストベースの操作をオーバーライドします。演算子を使用する場合は、\ を、<text\ > テキストを識別するために構成する高度なポリシー式のプレフィックスに置き換えます。
正規表現操作 | 説明 |
---|---|
|
<regular expression\ > 引数に一致する文字列の前にあるテキストを選択します。正規表現がターゲットのどのデータとも一致しない場合、この式は長さ 0 のテキストオブジェクトを返します。次の式は、「テキスト/プレーン」から文字列「テキスト」を選択します。http.res.header(“content-type”).before_regex(re#/#) |
|
<regular expression\ > 引数に一致する文字列に続くテキストを選択します。正規表現がターゲットのどのテキストとも一致しない場合、この式は長さ 0 のテキストオブジェクトを返します。次の式は「MyExample」から「Example」を抽出します。http.req.header(“etag”).after_regex(re/my/) |
|
<regular expression\ > 引数に一致する文字列を選択します。正規表現がターゲットと一致しない場合、長さ 0 のテキストオブジェクトが返されます。次の例では、Via ヘッダー: http.req.header(“via”).regex_select(re!NS-CACHE-\d.\d:\s*\d{1,3}!)から”NS-CACHE-9.0: 90”という文字列を抽出します。 |
|
<regular expression\ >ターゲットが最大 1499 文字の\ 引数に一致する場合は TRUE を返します。正規表現は次の形式でなければなりません:re\ regular <delimiter\ > expression\ < delimiter\ > 両方の区切り文字は同じでなければなりません。さらに、正規表現は Perl 互換 (PCRE) の正規表現ライブラリ構文に準拠している必要があります。詳しくは、http://www.pcre.org/pcre.txtを参照してください。特に、pcrepattern のマニュアルページを参照してください。ただし、次の点に注意してください。後方参照は許可されません。再帰的な正規表現はお勧めしません。ドットメタ文字は改行文字にもマッチします。Unicode 文字セットはサポートされていません。SET_TEXT_MODE(IGNORECASE) が正規表現で指定された (?i) 内部オプションを上書きします。以下はその例である。http.req.hostname.regex_match (re/[[: alpha:]] + (abc) {2,3}/) と http.req.url.set_text_mode (urlencoded) .regex_match (re# (ab+c) #) 次の例は abとaに一致する:http.req.url.regex_match (re/a (?i) b/) 次の例では、ab、aB、Ab、Ab、AB とマッチします。http.req.url.set_text_mode (ignoreCase) .regex_match (re/ab/) 次の例では、大文字と小文字を区別しない複数行の一致を実行します。http.req.body.regex_match (re/ (?ixm) (^ab (.*) cd$)/) |
共有
共有
この記事の概要
This Preview product documentation is Cloud Software Group Confidential.
You agree to hold this documentation confidential pursuant to the terms of your Cloud Software Group Beta/Tech Preview Agreement.
The development, release and timing of any features or functionality described in the Preview documentation remains at our sole discretion and are subject to change without notice or consultation.
The documentation is for informational purposes only and is not a commitment, promise or legal obligation to deliver any material, code or functionality and should not be relied upon in making Cloud Software Group product purchase decisions.
If you do not agree, select I DO NOT AGREE to exit.