I want to remove the namespace from this tag using vbscript
so the tag looks like
I have used the following code but it will not replace the
namespace because the double quotes act in pairs.
I have tryed removing a small section at a time and trying using single qoutes in the replace statement, however I recieve syntax errors for both.
I have no control over the namespace as it is recieved from an external data source.
Any ideas would be gratefully received
Code:
string = < title xmlns:"[URL unfurl="true"]http://www.w3.org/1999/xhtml"[/URL] ></title >
Code:
string = < title >< /title >
namespace because the double quotes act in pairs.
I have tryed removing a small section at a time and trying using single qoutes in the replace statement, however I recieve syntax errors for both.
I have no control over the namespace as it is recieved from an external data source.
Code:
Replace(string,"xmlns:"[URL unfurl="true"]http://www.w3.org/1999/xhtml">,[/URL] "")