Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I remove all elements from an array that contain only special characters (such as ., * etc...).

share|improve this question
1  
You're going to need to give us more context. – Austin Brunkhorst Jan 26 at 21:47
1  
Try array_filter – Kolink Jan 26 at 21:47
For example: $test[0]==1,$test[1]==hello,$test[2]== *.- I would like to automatically remove the array $test[2] as it contains specal characters,I do not know how to implement array_filter in this case :( – Nobody Jan 26 at 21:54

1 Answer

up vote 0 down vote accepted
function only_specialchars($string) {
    if (preg_match("/[a-z0-9]/i", $string)) {
        return false;
    } else {
        return true;
    }
}

$filtered = array_filter($array, "only_specialchars"));

Something like this? This will filter all words that do not contain characters or numbers.

share|improve this answer
Thanks u a lot! – Nobody Jan 26 at 22:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.