I've been at it, for ~4 hours now, and I've failed completely, so I humbly ask for help
I've got a string with the following structure
a197 8101 aaa/bbb/ccc/ddd.doc
I need a regex that will give me ddd.doc
. Obviously ddd is not always ddd, might be 'potato', might contain numerals etc. Basically I want regex that will give my anything between the last '/' and up until (including) .doc
Edit: \/(.*\.html)
this is the closest I've got but it will return /bbb/ccc/ddd.doc
Edit2: I'm not looking to split, maybe I misspoke. I just want to match