Created
April 14, 2020 12:10
-
-
Save chilismaug/2ef6fd2d1d29a94328398874e2edf95a to your computer and use it in GitHub Desktop.
Phil Factor utility function to clean the json strings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IF OBJECT_ID (N'dbo.JSONEscaped') IS NOT NULL DROP FUNCTION dbo.JSONEscaped | |
GO | |
CREATE FUNCTION [dbo].[JSONEscaped] ( /* this is a simple utility function that takes a SQL String with all its clobber and outputs it as a sting with all the JSON escape sequences in it.*/ | |
@Unescaped NVARCHAR(MAX) --a string with maybe characters that will break json | |
) | |
RETURNS NVARCHAR(MAX) | |
AS | |
BEGIN | |
SELECT @Unescaped = REPLACE(@Unescaped, FROMString, TOString) | |
FROM (SELECT '' AS FromString, '\' AS ToString | |
UNION ALL SELECT '"', '"' | |
UNION ALL SELECT '/', '/' | |
UNION ALL SELECT CHAR(08),'b' | |
UNION ALL SELECT CHAR(12),'f' | |
UNION ALL SELECT CHAR(10),'n' | |
UNION ALL SELECT CHAR(13),'r' | |
UNION ALL SELECT CHAR(09),'t' | |
) substitutions | |
RETURN @Unescaped | |
END | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment