Remove this SEP L-tag using SQL?

There is a character in the string that I cannot remove from the StringBuilder.

------>

-4


source to share


1 answer


This character UNICODE 8232

is called the line separator. More details here

As long as you're dealing with NVARCHAR

, it's easy to replace



DECLARE @string NVARCHAR(100) = N'Between x and y is your character x
y';

SELECT REPLACE(@string,NCHAR(8232),''); --nothing between x and y anymore...

0


source







All Articles