Testing regex to match an integer. Administration > General > Regular expressions > New regular expression. Using test string "1" without the quotes and expression type "Character string included"
Versions:
If I have not misunderstood something relevant, how to investigate and hopefully fix?
- ^[[:digit:]]+$ did not match
- [[:digit:]]+ did not match
- \d+ did not match
- \d did not match
- .* did not match
- 1 matched
- ^1$ did not match
Versions:
- Zabbix: zabbix-server-mysql Version: 1:4.4.10-1+buster from http://repo.zabbix.com/zabbix/4.4/debian
- OS: Debian Buster amd64 with daily updates
If I have not misunderstood something relevant, how to investigate and hopefully fix?

Comment