# File lib/cgikit.rb, line 4976
                def operator_string( operator )
                        case operator
                        when EQUAL            then '=='
                        when NOT_EQUAL        then '!='
                        when GREATER          then '>'
                        when GREATER_OR_EQUAL then '>='
                        when LESS             then '<'
                        when LESS_OR_EQUAL    then '<='
                        when MATCH            then '=~'
                        end
                end