I now have a different problem ( see previous question).
The string I have is One/Two/Three/Four/Five
I need to extract after the third / and before the fourth /. The added advantage is that the characters up until the third / are all the same length in the column. I am using -
SUBSTRING (ORGPATHTXT,20,(CHARINDEX('/',(ORGPATHTXT))))
But this is still including some text after the 4th / but only passing upto 11 character into the column, which I'm finding very strange.