fork download
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. string hrefValue = "http://g...content-available-to-author-only...s.com/Pages/Card/Details.aspx?multiverseid=85808&part=Boseiju%2c+Who+Shelters+All";
  9. string id = Regex.Match(hrefValue, @"(?<==)[0-9]+(?=&)").Value;
  10. Console.WriteLine(id);
  11. }
  12. }
Success #stdin #stdout 0.06s 34768KB
stdin
Standard input is empty
stdout
85808