What benefits we can take using regex in xhtml css development?
any tools and useful regex commands?
What benefits we can take using regex in xhtml css development?
any tools and useful regex commands?
Do not use regex for parsing html.
Don't know about css though. It depends if it`s regular language or not. But it seems that parsing css with regexes aren't recommended too.
HTML and CSS are not regular and cannot be parsed by regular experessions. (Some simple subsets may be parsable but they invariably break down). Open/free HTML parsers are available in almost every language (even FORTRAN). Most languages also support CSS parsers. There are so many pitfalls in trying to use regexes. Please don't