fork download
  1. using System;
  2. using System.Globalization;
  3. using System.Linq;
  4. using System.Collections.Generic;
  5.  
  6. public class Test
  7. {
  8.  
  9.  
  10. public static void Main()
  11. {
  12. var companiesWithNumber = new[] { "1. Facebook", "2. Twitter", "3. MySpace" };
  13. var companiesWithoutNumber = companiesWithNumber.Select(c => c.Split().Last());
  14. foreach(var c in companiesWithoutNumber)
  15. Console.WriteLine(c);
  16. }
  17. }
Success #stdin #stdout 0.03s 33968KB
stdin
Standard input is empty
stdout
Facebook
Twitter
MySpace