Welcome
Looking for help with regular expressions? You'll find regular expression forums and blogs here at RegexAdvice.com. If you're looking for help with a particular expression, check out the Construction Advice forum. You should also search for regular expressions in the regular expression library.
If you have questions or need assistance, please contact Steve Smith via his blog.
-
This is a C# 2.0 enhancement of a C# port of YUI Compressor 's CSS minification code I got a little carried away with ideas for this, they were all regex based which really is what motivated me to work on it. However after I thought I was done I learned...
-
XRegExp is a JavaScript library that provides an augmented, cross-browser implementation of regular expressions, including support for additional modifiers and syntax. Several convenience methods and a new, powerful recursive-construct parser that uses...
-
OK, there regexes were discussed in the previous post this is mostly just their application. This is a C# 2.0 enhancement of a C# port of YUI Compressor 's CSS minification code Since I was doing this is C# I took full advantage of it's regex...
-
NOTE: All the regex referenced on this page written by me are using IgnoreCase = true I was looking at the regexes used in the YUI Compressor to minify CSS and came up with a couple of more that I think could help the process. The code and port I was...
-
The square brackets character class is one of the more misunderstood of the basic regex features. This feature is supported in virtually all regex implementations. In fact off the top of my head I don't know an implementation that doesn't support...