I want a search for strings that has any special characters like alphanumeric characters. /[^a-zA-Z0-9]/ searches for strings that has no alphanumeric characters. But I don't want that. I want to filter with the only alphanumeric characters like á. So that it can match with álgebra but doesn't match with algebra. How can I build that?