Let's say I have these strings:
row - 1: First_s - end
row - 2: Second_s - end
...
row - 400: string_400 - end
I'd like to use the matlab function regexp to select any non-white character that is between : and - end. So in my example it would select First_s Second_s string_400, etc. What would an appropriate regex look like?