Converting from a Html encoded string to a 'normal' Url - Stack Overflow most recent 30 from stackoverflow.com2009-12-21T00:56:12Zhttp://stackoverflow.com/feeds/question/468843http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/468843/converting-from-a-html-encoded-string-to-a-normal-url0Converting from a Html encoded string to a 'normal' UrlKev Hunter2009-01-22T11:53:16Z2009-01-22T12:16:55Z
<p>I have a url in an xml documnent which is encoded</p>
<pre><code><Link>http://www.sample.com/test.asp?goto=HOTWIZ%26eapid=857</Link>
</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 &</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#4688543Answer by Gumbo for Converting from a Html encoded string to a 'normal' UrlGumbo2009-01-22T11:57:20Z2009-01-22T11:57:20Z<p>There is a semantic difference between <code>…?foo=bar&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&baz</code>).</p>
http://stackoverflow.com/questions/468843/converting-from-a-html-encoded-string-to-a-normal-url/468900#4689000Answer by Paul Dixon for Converting from a Html encoded string to a 'normal' UrlPaul Dixon2009-01-22T12:16:55Z2009-01-22T12:16:55Z<p>The & has been urlencoded (%26) rather than entity encoded - for a more "pure" xml approach you would entity encode it as <code>&amp;</code></p>
<pre><code><Link>http://www.sample.com/test.asp?goto=HOTWIZ&amp;eapid=857</Link>
</code></pre>