Let's say you have a string (say a list of Christmas presents).
presents = 'iPods, Windows 8, .hack//Sign boxset , red shoes , Wall-E DVD, Deus Ex: Human Revolution '
The comma delimited items are all arbitrary and can contains numbers, punctuation, or special characters (except commas). I want to get an array of these items using Python.
presents_arr = ['iPods', 'Windows 8', '.hack//Sign boxset', 'red shoes', 'Wall-E DVD', 'Deus Ex: Human Revolution']
I would normally do this by splitting the string with the comma delimiter and then cleaning up each string with split.
presents = presents.split(',')
presents = [present.strip() for present in presents]
Our of curiosity, can I do this specifically with re.findall? I am requiring the same exact behavior as split/strip.