Split string and take last element

The way to do it in SQL :

SELECT SUBSTRING( string , LEN(string) -  CHARINDEX("https://stackoverflow.com/",REVERSE(string)) + 2  , LEN(string)  ) FROM SAMPLE;

JSFiddle here http://sqlfiddle.com/#!3/41ead/11

Leave a Comment