A typical string below 'describer' in the database looks like this
'name, year'
i.e.
'Smith, 2013'
I want to strip this by removing the comma and anything after it to be left with
'Smith'
predicate = [NSPredicate predicateWithFormat:@"describer LIKE %@", filter];