vote up 1 vote down star

I've been stuck on an interesting (IE: mind numbing) question for the past few hours.

I've been trying to parse operators with regex:

([<>]=?|[!=]=)

The ones that I want are: <= >= < > == !=

== and != matches great. But all the ones having to do with < or > doesn't on my Drupal site, even though they should theoretically work.

What I ended up doing is this: .replace(/more than/ig, ">")

And in the text write "more than" where I would write >, and it works! Matches perfectly and everything...

This is really really silly, but I cannot think of a reason why this issue would exist. I turned off all the filters in Drupal, and in Firebug just writing > normally looks like >, not escaped or anything.

I'm really confused and hope for enlightenment.

Thanks.

flag

what are you parsing against? – Paolo Bergantino Jun 17 at 23:04

3 Answers

vote up 5 vote down check

Could something be changing your source material into entities?

&gt; vs > 

&lt; vs <
link|flag
Thanks yep that's it, and to molf as well. – Jourkey Jun 17 at 23:22
@DGM, check out my edit; was that what you meant? – Alan Moore Jun 18 at 5:34
Well, not exactly but it conveys the same idea. I was just showing one in code mode and one without to demonstrate that they looked the same. – DGM Jun 19 at 21:37
vote up 3 vote down

Did you try actually matching the escaped version?

Firebug will not show the content escaped, i.e. it will not display > as entities (&gt;) even though they are (view the source of this page to check that). It seems very likely that it is the problem.

link|flag
Yeah I did not know that about Firebug. Thank you very much. – Jourkey Jun 17 at 23:29
vote up 0 vote down
((&lt;|&gt;)=?|[!=]=)
link|flag

Your Answer

Get an OpenID
or

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