Oracle Database 11g: when I run
select REGEXP_COUNT(' ŁÜ||AB!#$%&''()*+,- .:;<=>?@[\]^_`{}/~ ',
'[ 0-9A-Za-z!#$%&''\(\)\*\+,\.:;<=>\?@\[\^_`\{\}\/~\-]') "HOW MANY" from dual;
I have result 34.
I want just add '\]' to the pattern and I expect value 35, but Oracle returns 1.
select REGEXP_COUNT(' ŁÜ||AB!#$%&''()*+,- .:;<=>?@[\]^_`{}/~ ',
'[ 0-9A-Za-z!#$%&''\(\)\*\+,\.:;<=>\?@\[\^_`\{\}\/~\-\]]') "HOW MANY" from dual;
What should I do to get 35?