This just says anything that's not an alphanumeric or a space and replace it with nothing.
@search_query = @search_query.tr('^A-Za-z0-9 ', '') RUBY:001 > "sdfl &8~~!".tr('^A-Za-z0-9 ','') "sdfl 8"