user2379643
user2379643

Reputation: 13

Looking for RegEx pattern match code for Powerbuilder Application

I would appreciate if any one has RegEx Pattern Match Code to be used in Powerbuilder application.

Upvotes: 1

Views: 2520

Answers (2)

Rich Bianco
Rich Bianco

Reputation: 4174

If using PB.NET then you can use .NET framework assemblies that have robust RegEx functionality. If not then maybe what Terry mentioned about PBNIRegex, for which I don't have any experience with.

Upvotes: 0

Terry
Terry

Reputation: 6225

Natively, I'd be reluctant to call this "RegEx", but if you have rudimentary pattern matching needs, Match() is the PowerScript function that does this. It has basic operators, but will only tell you if you have a match, not where in the target string.

If you need something more robust than that, even if it hadn't already been mentioned, I'd point you towards PbniRegex.

Good luck,

Terry.

Upvotes: 1

Related Questions