I'm trying to sort items generated by Yahoo Pipes from a CSV file by the last word of one of the entries of the generated items:
Example JSON item generated by this Pipe:
"items": [
{
"name": "Prof. Dr.-Ing. Richard Bamler",
"link": "http:\/\/www.lmf.bv.tum.de",
"lehrstuhl": "Lehrstuhl f\u00fcr Methodik der Fernerkundung",
"y:row": "1",
"description": null,
"title": null
},
I guess I need a RegEx to extract the last word of the name string (1st problem), which I can't quite figure out.
As always, thanks for your time.