using System . Text . RegularExpressions;
Text = Regex . Replace( "11 22 33 44" , @"( )+" , "$1" );
//or
Text = Regex . Replace( "11 22 33 44" , @"\s+" , " " );