Regex to Match HTTP Response Code
Preface
Some nice regex to filter HTTP response. You can use this to filter logs, create graphs, etc.
Regex
HTTP Response Code | Regex |
---|---|
2xx | 2\d{2} |
3xx | 3\d{2} |
4xx | 4\d{2} |
5xx | 5\d{2} |
Some nice regex to filter HTTP response. You can use this to filter logs, create graphs, etc.
HTTP Response Code | Regex |
---|---|
2xx | 2\d{2} |
3xx | 3\d{2} |
4xx | 4\d{2} |
5xx | 5\d{2} |