Skip to content

Instantly share code, notes, and snippets.

@amtwo
Last active January 17, 2018 04:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amtwo/4fdfd8c07fc341d8105913309cf945af to your computer and use it in GitHub Desktop.
Save amtwo/4fdfd8c07fc341d8105913309cf945af to your computer and use it in GitHub Desktop.
Finding the Final Slash in a file path;
DECLARE @FilePath nvarchar(300) = N'C:\Users\Andy\Documents\GitHub\dba-database\stored-procedures\dbo.Alert_Blocking.sql';
SELECT FilePath = @FilePath,
PathLen = LEN(@FilePath),
FinalSlashPos = CHARINDEX('\', REVERSE(@FilePath), 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment