使用正則表達式(regex)創建符合指定模式的搜索查詢。
搜尋應用程式每個查詢最多允許 5 個正則表達式。要使用正則表達式,請將您要查詢的模式用斜線(/)括起來:
endpointHostName: /^(W|m)/
重要
|
語法範例
查詢
|
結果
|
說明
|
/^(this is a regex)/ |
錯誤
|
|
endpointHostName: /^(W|m)/ |
返回結果
|
|
filePath: /etc/pwd/config/aaa |
錯誤
|
|
filePath: /\/etc\/pwd\/config\/aaa/ |
返回結果 |
|