I have a large String and I need to extract String value from it. String value is located between delimiters
category = '
and
';
This is my regex, but I need to avoid outputing delimiters.
String productCategory = Regex.Match(html, @"category = '(.*?)';").Value;
This is the exampe
category = 'Video Cards';
and I need to extract
Video Cards