× 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.



Hi,

Wow,with answers like these there is a reason to carry on...:_)

Thanks,
Spencer

Spencer Elliott wrote:
Hi,
I have the following regular expression:
^(MDB)[\w\W]*(Final.PDF|Final.pdf)$

This expression test as true against the following string:
MDB MO3-09 Final.PDF
at http://www.regular-expressions.info/javascriptexample.html

I run the same expression and string through the iSeries RegExp APIs and it fails(returns 1).

Does anyone have any idea where there is a online test that matches the IBM APIs or can figure out what I am doing incorrectly?

BTW: The OCEAN conference was great!

My program works with another expression to test email addresses.
^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,6}$

Thanks,
Spencer


---snip---
/*---( Compile pattern )---*/
rc = regcomp(&preg, wrkPattern, REG_EXTENDED);
if (rc != 0) {
regerror(rc, &preg, errMsg, sizeof(errMsg));
PatError(100, (char *) pattern, (char *) errMsg);

regfree(&preg);

if (matchString != inpString) {
free((void *) matchString);
matchString = NULL;
}
return (0);
}

/*---( Run Pattern )---*/
if ( (rc = regexec(&preg, matchString, nmatch, pmatch, 0)) != 0 ) {
regerror(rc, &preg, errMsg, sizeof(errMsg));
---snip---


As an Amazon Associate we earn from qualifying purchases.

This thread ...


Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.