fork download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text.RegularExpressions;
  4. using System.Linq;
  5. public class Test
  6. {
  7. public static void Main()
  8. {
  9. var s = @"Sample text for testing:
  10. abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
  11. 0123456789 _+-.,!@#$%^&*();\/|<>""'
  12. 12345 -98.7 3.141 .6180 \9,000 +42
  13. 555.123.4567 +1-(800)-555-2468
  14. foo@demo.net bar.ba@test.co.uk
  15. www.demo.com http://f...content-available-to-author-only...o.co\.uk/
  16. http://r...content-available-to-author-only...r.com/foo.html?q=bar
  17. https://m...content-available-to-author-only...e.net||Test ";
  18. Console.WriteLine(s.Substring(s.LastIndexOf('|')+1));
  19. }
  20. }
Success #stdin #stdout 0.01s 131648KB
stdin
Standard input is empty
stdout
Test