Saturday, May 18, 2013
   
Text Size
Login

CharIndex Reverse - find occurrence starting from end of string in TSQL

What?
This is a quick note on finding the last occurrence of a string in a longer string. This has to be in Transact SQL for a SQL Server instance only and not filtered by other code.


Why?
I have a string such as the following (column positions added for demo purposes):

  1.  String1.String2.String3.String4 
  2.  1   5   10   15   20   25   30 -> length = 31 
I'd like to end up with just the last part of this, ie "String4". So I need to delimit based on the dot/period (.) and use substring in a sort of reversed form.

For argument's sake, I'm assigning this string to the variable "haystack".


How?
Perhaps we should determine the position of the last needle first (reverse the haystack string and find needle):

  1.  DECLARE @Haystack VARCHAR(31); 
  2.  SET @Haystack = 'String1.String2.String3.String4'
  3.  -- I want "String4" from Haystack 
  4.   
  5.  SET @Delimiter = '.'
  6.   
  7.  PRINT @Haystack
  8.  -- yields "String1.String2.String3.String4" 
  9.   
  10.   
  11.  SELECT REVERSE( @Haystack ); 
  12.  -- yields "4gnirtS.3gnirtS.2gnirtS.1gnirtS" 
  13.   
  14.   
  15.  SELECT CHARINDEX(@DelimiterREVERSE( @Haystack )) 
  16.  -- yields "8" 
  17.   
  18.   
  19.  SELECT SUBSTRING(@HaystackCHARINDEX(@DelimiterREVERSE(@Haystack)), LEN(@Haystack)) 
  20.  -- yields ".String2.String3.String4" 


Not quite right, as we got the last occurrence counting from the beginning rather than the end, so we still need to work out the starting point:

  1.  SELECT  LEN(@Haystack) - CHARINDEX(@DelimiterREVERSE(@Haystack)) 
  2.  -- yields "23" 
  3.   
  4.   
  5.  SELECT SUBSTRING(@HaystackLEN(@Haystack) - CHARINDEX(@DelimiterREVERSE(@Haystack)), LEN(@Haystack)) 
  6.  -- yields "3.String4" 


Almost there, counting backwards and forwards it seems the index is just two characters off (as I don't want to include the period):

  1.  SELECT LEN(@Haystack) - CHARINDEX(@DelimiterREVERSE(@Haystack)) + 2 
  2.  -- yields "25" 
  3.   
  4.   
  5.  SELECT SUBSTRING(@HaystackLEN(@Haystack) - CHARINDEX(@DelimiterREVERSE(@Haystack)) + 2, LEN(@Haystack)) 
  6.  -- yields "String4"  Yay!!! 


Done!

Untested but in theory:

  1.  SELECT REVERSE( SUBSTRING( REVERSE( @Haystack ), 1, CHARINDEX( @DelimiterREVERSE( @Haystack ) ) - LEN( @Delimiter ) ) ) 
Add Comment

Name:

Email:

Website:

Message:



Human Check:

Security code
Refresh

Please type what you see in the image above:

Latest Posts

  • Joes Revolver Map (JRM)

    • Fri 17-May-13
      Hmmm... Sounds like a problem with the identifier. Was it working before and has there been a change ...
      Joel Lipman  
    • Fri 17-May-13
      Hello Joel: Yes, I do have it published on all pages of the site. I just went back to Revolver maps to ...
      Bill Duncan  
    • Fri 17-May-13
      Hi Bill, From the developers of RevolverMaps, "the module would need to be published on every page ...
      Joel Lipman  
    • Fri 17-May-13
      Hi Bill, I'll investigate further as you're not the first to say this happens. In the meantime, simply ...
      Joel Lipman  
    • Fri 17-May-13
      Its a great extension. But when I set it up I only show my presence on the 3D map and no other visitors ...
      Bill Duncan