vote up -1 vote down star

So I have this regex:

&(?!#?[xX]?(?:[0-9a-fA-F]+|\w+);)

That matches all &'s in a block of text

However, if I have this string:

& & & & & <a href="http://localhost/MyFile.aspx?mything=2&this=4">My Text &</a>
---------------------------------------------------------^

... the marked & also get's targeted - and as I'm using it to replace the &'s with & the url then becomes invalid:

http://localhost/MyFile.aspx?mything=2&amp;this=4

D'oh! Does anyone know of a better way of encoding &'s that are not in a url.

flag

\w already matches all characters in the class [0-9a-fA-F]. So (?:[0-9a-fA-F]+|\w+) can simply be written as \w+. – Bart K. Nov 5 at 11:01
What was the down vote for?! – IP Nov 5 at 11:17
Your code sample is invalid. You should encode the ampersands in URLs: htmlhelp.com/tools/validator/… – David Dorward Nov 5 at 11:19
I think that's a little harsh. I'll pick any website at random now and I promise you that I will not find in the source: <a href="example.com/mypage.html?one=1&amp;two=2"… Link</a>...so because I was unware of this fact I'm being downvoted?! At least write it as an answer so everyone else who didn't know this can find out! – IP Nov 5 at 11:23
"You shouldn't ask this question" isn't, IMO, an answer, so I'm not going to mark it as such. Guffa feels otherwise. (And I think you're putting way too much value on points.) – David Dorward Nov 5 at 11:28
show 1 more comment

1 Answer

vote up 4 vote down check

No, the URL does not become invalid. The HTML code becomes:

<a href="http://localhost/MyFile.aspx?mything=2&amp;this=4">

This means that the code that was not correctly encoded now is correctly encoded, and the actual URL that the link contains is:

http://localhost/MyFile.aspx?mything=2&this=4

So, it's not a problem that the & character in the code gets encoded, on the contrary the code is now correct.

link|flag
While most browsers can error correct if the attribute includes &this=, trying it with &copy= will demonstrate that this is a real issue and that attributes containing URIs are not exceptions to the rules for encoding characters which have special meaning in HTML. – David Dorward Nov 5 at 11:08
Incorrect. What if the source is ...?one=two&amp;three ? – cletus Nov 5 at 11:09
What source? The raw source? Then the HTML to represent the URL would be &amp;amp;. Or do you think that the OP has some content which has the href attributes HTML encoded, but not the rest of the content? Because that would be very odd. – David Dorward Nov 5 at 11:18
@cletus: Then the URL is not correctly encoded, and that can't be solved by any HTML encoding. The & character in the value has to be encoded as %26, or the URL will not work either with or without HTML encoding. – Guffa Nov 5 at 12:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.