I have an array of categories getting values from database
<?php foreach ($category_1['children'] as $category_2) { ?>
<li><a href="<?php echo $category_2['href']; ?>">
<?php echo $category_2['name']; ?></a>
<?php } ?>
It returns values like
8.5" x 14" (Tri-Fold)
8.5" x 2.75"
8.5" x 3.667" (1/3 Page)
8.5" x 5.5"
8.5" x 5.5" (1/2 Page)
80lb gloss book, 16 Page Wall Calendar
9" x 12" Envelope
9" x 14.5"
Booklets/Catalogs
Bookmarks
Brochures
Business Cards
Calendars
The problem is that I want to remove the values which have numbers in it and display the values with names only. For eg.
Booklets/Catalogs
Bookmarks
Brochures
Business Cards
Calendars
So how can I remove the values with numbers from the array. Can it be done with the array_filter using wildcard.