fork(1) download
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. class Demo {
  5. public static void Main()
  6. {
  7. var htmlCode = "href=\"/cgi-bin/pin.cgi?pin=94841&sid=9548.1386389012.v1\"><";
  8. var sids = Regex.Match(htmlCode, @"sid=(.+?)""");
  9. Console.WriteLine(sids.Groups[1].Value);
  10. }
  11. }
Success #stdin #stdout 0.07s 34104KB
stdin
Standard input is empty
stdout
9548.1386389012.v1