I couldn't found any better way to do it but to split the string into the array:
string str = "unknown printer took a galley of type and scrambled it to make a type specimen book";
string[] split = str.Split(' ');
Console.WriteLine(split[split.Length - 2].Reverse());
The console should return "nemiceps" The code seems right, but there's the wrong output. Any tips?