string inputString = "one two three four five"; string resultString = string.Join(" ", inputString .Split(' ') .Select(x => new String(x.Reverse().ToArray()))); Console.WriteLine(resultString);