Filter fields that feature a symbol at least twice

I need to filter files that have semicolon twice or more times in the ARTIST tag. How would I achieve this? I tried ARTIST HAS ; ; but that does not do it.

Try
%artist% MATCHES ;*.;

%artist% MATCHES ;.*; does it.