正規表現一致条件を追加する。
            オプション文字列には以下の文字の組み合わせを指定できる。
            
            
| i | 大文字小文字を区別しない | 
| m | 複数行にマッチする | 
| x | 拡張正規表現を使用する | 
| s | '.' が改行に一致する | 
 
Namespace: Nec.NebulaAssembly: Nec.Nebula.Core (in Nec.Nebula.Core.dll) Version: 7.0.0.0 (7.0.0.0)
 Syntax
Syntaxpublic NbQuery Regex(
	string key,
	string regexp,
	string options = null
)
Public Function Regex ( 
	key As String,
	regexp As String,
	Optional options As String = Nothing
) As NbQuery
public:
NbQuery^ Regex(
	String^ key, 
	String^ regexp, 
	String^ options = nullptr
)
member Regex : 
        key : string * 
        regexp : string * 
        ?options : string 
(* Defaults:
        let _options = defaultArg options null
*)
-> NbQuery 
Parameters
- key
- Type: SystemString
 キー
- regexp
- Type: SystemString
 正規表現
- options (Optional)
- Type: SystemString
 オプション
Return Value
Type: 
NbQuerythis
 Exceptions
Exceptions Version Information
Version InformationCore
Supported in: 1.0
 See Also
See Also