Converting from a Html encoded string to a 'normal' Url - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T00:56:12Z http://stackoverflow.com/feeds/question/468843 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/468843/converting-from-a-html-encoded-string-to-a-normal-url 0 Converting from a Html encoded string to a 'normal' Url Kev Hunter 2009-01-22T11:53:16Z 2009-01-22T12:16:55Z <p>I have a url in an xml documnent which is encoded</p> <pre><code>&lt;Link&gt;http://www.sample.com/test.asp?goto=HOTWIZ%26eapid=857&lt;/Link&gt; </code></pre> <p>I would like to convert that into a Url in the outputed Html.</p> <p>I can output a link ok but i need the %26 to be converted to an &amp;</p> <p>I assume i could use some sort of replace functionality in XSLT but I imagine there is a more elegant solution</p> <p>Cheers</p> <p>To clarify the intent, is should be two seperate parameters, the url is stored in an xml document so needs the url needs to be encoded</p> http://stackoverflow.com/questions/468843/converting-from-a-html-encoded-string-to-a-normal-url/468854#468854 3 Answer by Gumbo for Converting from a Html encoded string to a 'normal' Url Gumbo 2009-01-22T11:57:20Z 2009-01-22T11:57:20Z <p>There is a semantic difference between <code>…?foo=bar&amp;baz</code> and <code>…?foo=bar%26baz</code>. The first is two arguments (<code>foo</code> with the value <code>bar</code> and <code>bar</code> with an empty value) while the second is just one argument (<code>foo</code> with the value <code>bar&amp;baz</code>).</p> http://stackoverflow.com/questions/468843/converting-from-a-html-encoded-string-to-a-normal-url/468900#468900 0 Answer by Paul Dixon for Converting from a Html encoded string to a 'normal' Url Paul Dixon 2009-01-22T12:16:55Z 2009-01-22T12:16:55Z <p>The &amp; has been urlencoded (%26) rather than entity encoded - for a more "pure" xml approach you would entity encode it as <code>&amp;amp;</code></p> <pre><code>&lt;Link&gt;http://www.sample.com/test.asp?goto=HOTWIZ&amp;amp;eapid=857&lt;/Link&gt; </code></pre>