Regular Expression (REGEX)

This forum is for eXpress++ general support.
Post Reply
Message
Author
User avatar
unixkd
Posts: 579
Joined: Thu Feb 11, 2010 1:39 pm

Regular Expression (REGEX)

#1 Post by unixkd »

Hi all

I need a REGEX parser in my application that will enable user to do FIND using regular expression like applicable in most Search dialog of various text editors.

I google and find the code below in VB and will need interpretation.

'Prepare a regular expression object
Dim myRegExp As RegExp
Dim myMatches As MatchCollection
Dim myMatch As Match
Set myRegExp = New RegExp
myRegExp.IgnoreCase = True
myRegExp.Global = True
myRegExp.Pattern = "regex"
Set myMatches = myRegExp.Execute(subjectString)
For Each myMatch in myMatches
MsgBox(myMatch.Value)
Next


Thanks

Joe

skiman
Posts: 1199
Joined: Thu Jan 28, 2010 1:22 am
Location: Sijsele, Belgium
Contact:

Re: Regular Expression (REGEX)

#2 Post by skiman »

Hi,

Take a look at
https://www.alaska-software.com/downloa ... ection=400

XbPCRE - Regular Expression Parser in Xbase++ from Phil Ide.
Best regards,

Chris.
www.aboservice.be

User avatar
unixkd
Posts: 579
Joined: Thu Feb 11, 2010 1:39 pm

Re: Regular Expression (REGEX)

#3 Post by unixkd »

Thanks Chris

Kindly send me the username and password required to access the files

Joe

Cliff Wiernik
Posts: 605
Joined: Thu Jan 28, 2010 9:11 pm
Location: Steven Point, Wisconsin USA
Contact:

Re: Regular Expression (REGEX)

#4 Post by Cliff Wiernik »

Login to alaska-software.com with your user and password. Select downloads, click 2.0,1.9,1.82 and search for the program names in the seach box based on the link in the previous posts. This will provide the link for the current location. xbpcre allows you to download this zip file.

User avatar
Auge_Ohr
Posts: 1428
Joined: Wed Feb 24, 2010 3:44 pm

Re: Regular Expression (REGEX)

#5 Post by Auge_Ohr »

greetings by OHR
Jimmy

Post Reply