G
Guest
I'm trying to parse the title and url out of a bunch of menu javascript
statements to convert a Macromedia menu to ASP.NET menu control.
The line I'm searching is of the form:
mm_menu_1222090555_0.addMenuItem("MyTitle","window.open('MyURL.htm',
'_self');");
The regex I came up (which doesn't match) is:
r = new Regex(@"addMenuItem.""(?<1>.#)"".*window.open.'(?<2>.#)'"
Thanks for any help with this
statements to convert a Macromedia menu to ASP.NET menu control.
The line I'm searching is of the form:
mm_menu_1222090555_0.addMenuItem("MyTitle","window.open('MyURL.htm',
'_self');");
The regex I came up (which doesn't match) is:
r = new Regex(@"addMenuItem.""(?<1>.#)"".*window.open.'(?<2>.#)'"
Thanks for any help with this