fork download
  1. using System;
  2. using System.Linq;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. var s = "background-image: url('https://s...content-available-to-author-only...s.com/files.domain.com/uploads/image/file/168726/carousel_IMG_6455.jpg')";
  9. var res = s.Split(new[] {"'"}, StringSplitOptions.None).Where(v => v.StartsWith("http")).FirstOrDefault();
  10. Console.WriteLine(res);
  11. }
  12. }
Success #stdin #stdout 0.01s 131776KB
stdin
Standard input is empty
stdout
https://s...content-available-to-author-only...s.com/files.domain.com/uploads/image/file/168726/carousel_IMG_6455.jpg