Display a specific product feature in products_grid.tpl

Hi friends,



Here's a little something i'd like to do. In my products_grid.tpl i want to display a specific feature. So far i managed to display all of them like this:



{if $show_features}
{assign var="product_features" value="product_features_`$obj_id`"}
{$smarty.capture.$product_features}
{/if}




And this code produces something like this:


```php



SEE by CHLOE / WHITE / Tank

```

As you can see there are 3 product features seperated by "/"

Is there a way to display just one of them?
If it helps, i need the first one. Maybe there's a way to pick a substring ending at the first "/" or something.