risolto in questo modo :

private string splitText(string fullText)
{
Regex r = new Regex(@"(?s)\b.{1,10}\b", RegexOptions.Compiled);
string m = r.Match(fullText).Value;
if (m.Length < fullText.Length)
m += "";
return m;
} }