I'm trying to get the Javascript output on when I match the given value in a var, I want to output that value that I tried to match:
Example JS:
x = '';//some INNERHTML in a document
if(x.innerHTML.match(/(.*)/i))
{
valuefound = RegEx.$1;
}
I've been reading my python book and tutorials and google search and google
code search trying to understand and I'm still not quite understanding how
to do it.
-Lamonte.
-- http://mail.python.org/mailman/listinfo/python-list
