I have always sucked at regular expressions and now I'm stuck with a problem. I am loading a webpage onto my AIR application now what i want to do is, I want to locate the text inside a certain pattern. See below.
<html>
<head></head>
<body>
Blah blah blah..
Blah blah var my_variable = "this is a value";
</body>
</html>
On the above example, I want to get this is a value without the quotes. That value is in a pattern of var[space]my_variable[space]=[space]"content"; How do I extract JUST the value?