I am new to MS Sql. I am trying to find a function which will split a long sentence into multiple sentences of fixed length...
For example
'This is a long sentence and I want to split it into multiple sentences of 25 character each with out splitting a word into multiple lines'
needs to be split as
'This is a long sentence' 'and I want to split it' 'into multiple ' 'sentences of 25' 'character each with ' 'out splitting a word ' 'into multiple lines'
Any help on this is greatly appreciated.