vote up 0 vote down star

Hi folks,

I am hoping that this will have a pretty quick and simple answer. I am using regular-expressions.info to help me get the right regular expression to turn URL-encoded, ISO-8859-1 pound sign ("%A3"), into a URL-encoded UTF-8 pound sign ("%C2%A3").

In other words I just want to swap %A3 with %C2%A3, when the %A3 is not already prefixed with %C2.

So I would have thought the following would work:

Regular Expression: (?!(\%C2))\%A3
Replace With:       %C2%A3

But it doesn't and I can't figure out why!

I assume my syntax is just slightly wrong, but I can't figure it out! Any ideas?

FYI - I know that the following will work (and have used this as a workaround in the meantime), but really want to understand why the former doesn't work.

Regular Expression: ([^\%C2])\%A3
Replace With:       $1%C2%A3

TIA!

flag

I think you rather need an encoding converter to convert from ISO 8859-1 to UTF-8. – Gumbo Sep 7 at 16:56

4 Answers

vote up 4 vote down check

Why not just replace ((%C2)?%A3) with %C2%A3, making the prefix an optional part of the match? It means that you're "replacing" text with itself even when it's already right, but I don't foresee a performance issue.

link|flag
Sounds great - don't know why I didn't think of that - thanks! :) Not accepting it as the answer as it is essentially another workaround (the point of the question was to find out why my lookbehind wasn't working), but thank you! – FrostbiteXIII Sep 8 at 9:14
Ignore that - accepted answer - many thanks! :) – FrostbiteXIII Sep 8 at 9:29
Very nice, +1. You could use (?:(?:%C2)?%A3) because backreferences are not really necessary in this case. – Tomalak Sep 8 at 9:38
vote up 4 vote down

Unfortunately, the (?!) syntax is negative lookahead. To the best of my knowledge, JavaScript does not support negative lookbehind.

What you could do is go forward with the replacement anyway, and end up with %C2%C2%A3 strings, but these could easily be converted in a second pass to the desired %C2%A3.

link|flag
I've asked two or three times whether lookbehind operators would be added to ECMAScript, on the mozilla.dev.tech.js-engine newsgroup and got no reply. Feel free to add your voice. groups.google.com/group/mozilla.dev.tech.js-engine/… – Jason S Sep 7 at 16:21
Thanks for the quick answer. Sounds silly, but I am finding it very hard to understand the major difference between lookahead and lookbehind - to my mind (and I know I am wrong, otherwise there wouldn't be two different names for it!), it is just doing a search for some characters, but then not using these for the replacement? And thank you for the suggestion, but I think my workaround is slightly neater. :) – FrostbiteXIII Sep 7 at 16:23
Think about it this way....regular expressions often work by keeping track of where you currently are in the string. This may be at the expense of figuring out where you've been (lookbehind) and where you're going (lookahead). Perhaps there are implementation difficulties with implementing lookbehind due to the expense of keeping track of your current position. – David Andres Sep 7 at 16:26
vote up 3 vote down

You could replace

(^.?.?|(?!%C2)...)%A3

with

$1%C2%A3
link|flag
This seems to match too much in some cases. Try to match this against the text "ladskfjdkfj%A3" and it appears that kfj%A3 is matched. – David Andres Sep 7 at 16:29
...until after I remove the ellipses, but even then the string "ladskfjd%C2%A3" matches though it shouldn't...JavaScript isn't making this easy! – David Andres Sep 7 at 16:31
@Tomalak: +1 That’s what I would have written. – Gumbo Sep 7 at 16:33
@Gumbo: This is a sincere compliment for me. :) – Tomalak Sep 7 at 16:34
@dandres109: Yes, the string is matched. In any case, that's what the backreference is for - the matched characters are added back where they belong. – Tomalak Sep 7 at 16:36
show 6 more comments
vote up 1 vote down

I would suggest you use the functional form of Javascript String.replace (see the section "Specifying a function as a parameter"). This lets you put arbitrary logic, including state if necessary, into a regexp-matching session. For your case, I'd use a simpler regexp that matches a superset of what you want, then in the function call you can test whether it meets your exact criteria, and if it doesn't then just return the matched string as is.

The only problem with this approach is that if you have overlapping potential matches, you have the possibility of missing the second match, since there's no way to return a value to tell the replace() method that it isn't really a match after all.

link|flag

Your Answer

Get an OpenID
or

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