David Medlock wrote: > should be: > > text = text.skip( text.countWhile( delegate bool(char c){ c<=32; } ) ); > -DavidM Oops again. should be: text = text.skipWhile( delegate bool(char c){ c<=32; } ); arrgh. -DavidM