Example from MSDN
strng = "as1 As2 aS3 AS4"
Set regex = New RegExp
regex.Pattern = ptrn
How the hell are they "referencing" this dll, i.e. New RegExp? I tried and it fails. I can try create...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_20430341.html
Hello ,
how can the following code be modified to allow an integer OR nothing, but not a space AND an integer?
// matches positive or negative integer.
// 0, 1 inside the curly brackets {} t...
http://www.experts-exchange.com/Programming/Languages/Scripting/JavaScript/Q_20667665.html
Zones:
JavaScriptDate Answered: 07/03/2003 Rating: 8.2 Views: 0
All,
This problem is really annoying me.
I have a HTML page (well, I have a couple of them) and on these pages there are a number of Input textboxes. There is a couple of things I need/want ...
http://www.experts-exchange.com/Programming/Languages/Scripting/JavaScript/Q_20786215.html
Zones:
JavaScriptDate Answered: 11/04/2003 Rating: 7.8 Views: 0
i don't quite understand this.. i can use it to set a pattern to parse certain things from a website? like.. if i want to get numbers and before each number is the exact same string.. i could set a...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_20818892.html
Zones:
Visual BasicDate Answered: 12/09/2003 Rating: 6.8 Views: 0
in perl I can say
"foo:bar" =~/(\w*):(\w*)/;
$firstWord=$1;
$secondWord=$2;
Is there any equivalent with Visual Basic regular expressions?
something like: (I've commented out lines ...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_20822513.html
Zones:
Visual BasicDate Answered: 12/12/2003 Rating: 7.6 Views: 0
I need to return an item from a string using regex.
A sample string would be "@parameter"
I'd like to retrieve just the word parameter. Does anyone know what methods and maybe have an example...
http://www.experts-exchange.com/Programming/Languages/C_Sharp/Q_20859468.html
Zones:
C#Date Answered: 01/23/2004 Rating: 7.4 Views: 0
Hello,
I have a question regd regexp in TCL.
There is a sring var = " 1 ABC 2 BCN 3 NNN ooo llll mmm "
I have to grep [NUMBERS] [ CAPS LETTESR] .
so i'm using regexp { [0-9]+ [A-z]...
http://www.experts-exchange.com/Programming/Languages/Scripting/Perl/Q_20952154.html
Zones:
Perl,
TCLDate Answered: 04/13/2004 Rating: 7.6 Views: 0
Hello Experts,
I am having a great deal of trouble using regular expressions in VB6. Actually, on the system where I develop the application everything is fine. After I compile my app for distri...
http://www.experts-exchange.com/Programming/Languages/Visual_Basic/Q_21025332.html
I am trying to parse a URL so I can refer to later in code. I want to return (1) the directory where a page is resides and (2) the name of the file. The following RegExp seems to work when I test l...
http://www.experts-exchange.com/Programming/Languages/Scripting/JavaScript/Q_21060834.html
Zones:
JavaScriptDate Answered: 07/16/2004 Rating: 7.4 Views: 0
Hi all. I want to do this:
Give a file open box that will open a standard text file and read it as a stream or something (I'm flexible.) This will be a delimited file that will have the email...
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_21186793.html