I have a lot of strings looking like this:
@"/News/some news text/"
@"/News/some other news text/"
@"/About/Some about text/"
@"/Abcdefg/Some abcdefg text/some more abcdefg text"
How do I cut out the first part of the strings, so that I end up with the following strings?:
@"/News/"
@"/News/"
@"/About/"
@"/Abcdefg/"
tia