I am learning how to use regex lookahead and lookbehind.
I want to extract json value from a text just like this
{"html":"\n\t\t\t\t<table class=\"table\">"}
I am using regex on C# like this
Regex.Match(text, "\"html\":\"([^(?<!\\\\)\"]*)").Groups[1].Value
Or
Regex.Match(text, "\"html\":\"((?<!\\\\$)[^\"]*)").Groups[1].Value
But its not working at all. Can I get this value using C# regex ?