Tried that too. (and tried .*\\\+.*) It seems to be a problem in escaping the meta-value of "+".
BTW, noticed an error in the last "replace" line. This:
link.uri = link.uri.replace("tag=st_lh", "tag-st.util.print");
should be:
link.uri = link.uri.replace("tag=st_lh", "tag=st.util.print");
|