fork download
  1. using System;
  2. using System.IO;
  3. using System.Text.RegularExpressions;
  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 = Regex.Match(s, @"'(.*?)'").Groups[1].Value ?? string.Empty;
  10. Console.WriteLine(res);
  11. }
  12. }
  13.  
  14.  
Success #stdin #stdout 0.03s 134720KB
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