×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
That works much better. Thanks
-----Original Message-----
From: rpg400-l-bounces@xxxxxxxxxxxx [mailto:rpg400-l-bounces@xxxxxxxxxxxx] On Behalf Of Douglas Handy
Sent: Monday, January 23, 2012 12:01 PM
To: RPG programming on the IBM i / System i
Subject: Re: experimenting with REGEX
scpattern = '[0-9][0-9][0-9]\W[0-9][0-9]\W[0-9][0-9][0-9][0-9]'
ideally I would like to take the pattern that I have working, but allow
the dash to be anything other can an alpha or numeric.
You could try something like:
scpattern = '[0-9][0-9][0-9][^0-9a-zA-Z][0-9][0-9][^0-9a-zA-Z][0-9][0-9][0-9][0-9]'
Basically [^0-9a-zA-Z] means anything BUT the ranges listed so no
digits or letters.
Doug
--
This is the RPG programming on the IBM i / System i (RPG400-L) mailing list
To post a message email: RPG400-L@xxxxxxxxxxxx
To subscribe, unsubscribe, or change list options,
visit:
http://lists.midrange.com/mailman/listinfo/rpg400-l
or email: RPG400-L-request@xxxxxxxxxxxx
Before posting, please take a moment to review the archives
at
http://archive.midrange.com/rpg400-l.
NOTICE: This message, including any attachment, is intended as a confidential and privileged communication. If you have received this message in error, or are not the named recipient(s), please immediately notify the sender and delete this message.
As an Amazon Associate we earn from qualifying purchases.