Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
DECLARE @string as varchar(max), @loop as int
SET @string = '1234567890123456789'
SET @loop = LEN(@string)/5
WHILE @loop > 0
BEGIN
SET @string = STUFF(@string,1+(@loop*5),0,'-')
SET @loop = @loop-1
END
SELECT @string