Thursday, 20 July 2017

Remove weird Character From string in Sql



LTRIM(RTRIM(REPLACE(REPLACE(REPLACE(@CardID, CHAR(10), ''), CHAR(13), ''), CHAR(9), '')))

No comments:

Post a Comment

React Hooks - custom Hook

  v CustomHook Ø React allows us to create our own hook which is known as custom hook. Example – 1 localStorage Demo Step-1 Create ...