vote up 1 vote down star

Should i add some character/s before or after < character (which is in string i'm trying to extract something from - it's html page) when doing preg match?

flag

62% accept rate
why down votes? – Phil Sep 30 at 16:24
1  
I guess they don't like the lack of knowledge the question displays, but personally I thought that was the whole point of the site. Before you didn't know that < didn't need to be escaped in regular expressions... now you do. I'll give you an up for asking the question and braving the criticism. – Alcon Sep 30 at 16:30
well, i add 'sorry if it's dumb question' like every 2nd question i post but i guess that's not enough for some... thanks to everyone who upvoted my question back to 0, though! – Phil Sep 30 at 16:35

3 Answers

vote up 1 vote down check

you dont need to escape < unless you are saving a user generated data and then you should be concerned about security and XSS.

link|flag
thanks for the down vote :) I guess that's what I should expect for answering such questions! – Mohammad Sep 30 at 16:22
1  
There appear to be some people here who are down vote trigger happy. Luckily a few up votes erases the damage from a down ;) – Alcon Sep 30 at 16:31
true that. :) cheers. – Mohammad Sep 30 at 16:35
vote up 6 vote down

you don't need to escape it, it's not a special character in regexes.

link|flag
vote up 2 vote down

Some regex parsers treat the "<" and ">" symbols as the word boundaries (GNU Basic & Extended regular expressions). See this great site for all regex-related info.

link|flag

Your Answer

Get an OpenID
or

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