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.
-
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...
-
Over at the Construction forum there is a sticky post which list the suggested posting guidelines for asking question on that forum. First let me say the guidelines were my idea however I didn't come up with them on my own. I had help. The idea sprang...
-
Hey guys, I am completely new to regular expressions and I barely know any JavaScript. So I have a mission for you, if you choose to accept. I need a script that can do the following. Search between two lines of code (I am writing asp) From <!--#include...
-
I've just released XRegExp 1.0 , the next generation of my JavaScript regular expression library. This version fixes a couple bugs, corrects even more cross-browser regex inconsistencies, and adds a suite of new regular expression functions and methods...