I have tried and searched and found a function that was not working...I have changed that function to fit the needs.Here is my solution:-- create this function onceCREATE FUNCTION StrInsert ( @str nvarchar(4000), @term nvarchar(10), @number int )RETURNS nvarchar(4000)ASBEGIN DECLARE @i int, @j int, @stepcount int IF (datalength(@str) <= @number) RETURN @str SELECT @i = 1, @j = @number + 1, @stepcount = datalength(@str) / @number WHILE @i <= @stepcount BEGIN SET @str = ISNULL(STUFF(@str, @j, 0, @term), @str) SET @j = @j + @number + len(@term) SET @i = @i + len(@term) END RETURN @strENDgo-- the solutiondeclare @t1 table(remarks varchar(1000))insert into @t1 values('Bendahari/Setiausaha/Naib Pengerusi/Ketua Seksyen Pasukan/PW II/Staf Sarjan/Sarjan Major/Ketua Trup')insert into @t1 values('Penolong Bendahari/Penolong Setiausaha/Quartermaster/Penolong Ketua Seksyen Pasukan/Sarjan')insert into @t1 values('Naib Pengerusi/Setiausaha Pasukan/Rumah Sukan/Rumah Asrama')selectdbo.StrInsert(remarks,'<br>',35)from @t1
No, you're never too old to Yak'n'Roll if you're too young to die.