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?
|
|
|||||||||
|
|
|
you dont need to escape < unless you are saving a user generated data and then you should be concerned about security and XSS. |
||||||||
|
|
|
you don't need to escape it, it's not a special character in regexes. |
||
|
|
|
|
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. |
||
|
|
