I'm trying to replace the following:
javascript:__doPostBack('ctl33$ShowLists','DoList|2711|311')
with
main.aspx?action=listshow&id=2711&row=311#auto
Only the digits 2711 and 311 might change and thereforce I want to keep them. I tried this:
var oldHref = "javascript:__doPostBack('ctl33$ShowLists','DoList|2711|311')";
var newHref = oldHref.replace(/javascript:__doPostBack\('ctl33\$ShowLists','DoList|(\d+)|(\d+)'\)/, "main.aspx?action=listshow&id=$1&row=$2#auto");
I already did some regular expressions, but needless to say that they did not cover my problem, did I forget to escape something?