我有一个包含这个值的表:
Articles/Search/ArtMID/2681/ArticleID/2218/Diet.aspx OurStory/MeettheFoodieandtheMD.aspx TheFood/OurMenu.aspx
我想得到这个
Diet.aspx MeettheFoodieandtheMD.aspx OurMenu.aspx
我怎样才能做到这一点?
解决方法
在sql中执行此操作的方法:
SELECT SUBSTRING( string,LEN(string) - CHARINDEX('/',REVERSE(string)) + 2,LEN(string) ) FROM SAMPLE;
JSFiddle这里http://sqlfiddle.com/#!3/41ead/11