On 10/18/06, Steve Hall <[EMAIL PROTECTED]> wrote:
I'm having a mental block, how can I wrap a string via substitute() ?
I've been trying something like:
let str = "123456789012345678901234567890"
let str = substitute(str, '\n\([[:print:]]\{-10,}\)', '\n\1\n', '')
echo str
to produce:
1234567890
1234567890
1234567890
Try
echo substitute(str,'\(.\{-10}\)','\1\n','g')
Yakov
