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.
-
If you're a JavaScript programmer and regular expression master (or want to be), check out the open source XRegExp library. Version 2 just hit the release candidate milestone yesterday, and brings a truckload of new features and improvements. Plus,...
-
Several year ago I decided to learn Regular Expressions. I had been skimming over an article about using regex for validation on web pages. It was at least a couple of weeks before I sat down an read the article in full. After I did I wanted to try to...
-
By far the most common request I see in people wanting regex help is someone wanting to use a regex to parse HTML. Generally I ignore those questions. If I do respond, my response is “Don’t use a regex to parse HTML. Use the HTML DOM”...
-
Here is the code to check whether the given string is a valid URL or not using Regular Expresssions. Public Function IsValidUrl(ByVal Url As String) As Boolean Dim strRegex As String = "^(https?://)" _ & "?(([0-9a-z_!~*'().&=+$%-]+:...
-
Collaboration Data Objects or CDO, is a component that enables messaging between applications. It's something like the MFC we have in VC++ that enables us to prefer a simpler interface compared to the WIN32 API which, as an interface, still requires...