fork download
  1. using System;
  2. using System.Text.RegularExpressions;
  3.  
  4. public class Test
  5. {
  6. public static void Main()
  7. {
  8. var html = @"<description=""This chapter builds upon the information in part 1 (""Introduction to Dynamic Equations"")"">";
  9. var filter = new Regex("(?<=description=\\\")(.+)(?=\\\">)");
  10. Console.WriteLine(filter.Match(html).ToString());
  11. }
  12. }
Success #stdin #stdout 0.07s 33992KB
stdin
Standard input is empty
stdout
This chapter builds upon the information in part 1 ("Introduction to Dynamic Equations")