vote up 1 vote down star

I have the following JavaScript code as a string literal:

var $Page = new function()
{
    var _url= 'http://www.some.url.com';

    this.Download = function()
    {
        window.location = _url;
    }
}

Is there a way I could get the value of the _url variable from my C# code? An open source library perhaps? I did this using a Regular Expression, but I was hoping for a more elegant way.

flag

5 Answers

vote up 2 vote down check

I'd say go for a Regular Expression, because it works. Why is it not elegant?

link|flag
It is, I'm just looking for another way to do it. – hmemcpy Apr 6 at 9:49
vote up 0 vote down

There is an open-source JavaScript interpreter in C# at http://jint.codeplex.com, if you need more than just getting the value.

link|flag
vote up 2 vote down

You could use a javascript parser, but parsing javascript for just that one value is probably way overkill.

link|flag
vote up 0 vote down

If it's a string literal, why not just copy and paste the URL into a new string literal?

Or did I take your question too literally (ho ho), and the string is being read from somewhere else?

link|flag
Well, it's a literal in the unit test, but I'm scraping it from an HTML page at runtime... – hmemcpy Apr 6 at 9:49
Ah, now I see :) – Blorgbeard Apr 6 at 10:08
vote up 0 vote down

You could execute the javascript function using the DLR and/or MyJScript.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.