19
Sun, May
7 New Articles

RPG Building Blocks

RPG
Typography
  • Smaller Small Medium Big Bigger
  • Default Helvetica Segoe Georgia Times

Ever wish there was a procedure that allowed you to use wildcards to detect the existence of a character pattern in a character string? The LIKE procedure now gives you this ability. It’s pattern matching made simple for RPG IV programs!

If you have ever needed to scan text to find a matching pattern, you will find this procedure helpful. The procedure is called LIKE because it is an RPG IV implementation of the Query/400 function and SQL predicate LIKE (an SQL predicate is much like a command or function). Pattern matching is more than simply scanning for matching characters. Pattern matching provides for the use of wildcards to indicate which positions will match any character and which positions to ignore. The LIKE procedure does these things.

The copybook containing the prototype is called LIKEPRO and is shown in Figure
1. The prototype shows that this procedure has seven parameters and returns a 1-byte numeric result. The result is 1 if the pattern is not found, and 0 if it is. The first parameter is the text to which the pattern is to be applied. The second parameter is the string containing the pattern to use. The third parameter (an optional parameter that I’ll explain in a moment) is the escape character. The other four parameters are used by the procedure if it determines it must call itself; they are not to be used by the user.

Two special characters are used: underscore (_) and percent sign (%). The _ is a wildcard; any character in this position in the text will be considered a match. The % means that any number of characters starting in this position in the text will match. The top of Figure 1 shows a simple example on the use of these special characters.

If you are looking for text that contains these special characters, you can use the escape parameter to tell the procedure to treat the character following it as data and not as a special character. You can use any character as an escape character. For example, suppose you are looking for the following string of characters: 'close_file'. This string has an underscore as part of the data. If you send this string to the LIKE procedure, LIKE will

interpret the underscore as a wildcard and will match any string that contains any character in that position. To tell LIKE the underscore is data (not a wildcard), use the escape parameter. If you specify a slash (/) as the escape character, you would rewrite the pattern this way: 'close/_file'. This way, LIKE sees the escape character and treats the character following it—in this case, the underscore—as data, not a wildcard.

The program used to test this procedure is called LIKETEST (see Figure 2). Its display file (see Figure 3) displays a screen with two input fields. In one, the user enters the text to search; in the other, the user enters the pattern. The program then places these two fields in variable-length variables and calls LIKE.

The procedure LIKE is available from the Midrange Computing Web site at http://www.midrangecomputing.com/mc/98/10. Since LIKE can call itself, it uses %PARM to determine if more than four parameters were passed. Because the user is supposed to pass no more than three parameters, more than three parameters indicates that LIKE is calling itself.

The only interesting point in this code is shown in Figure 4, where the % special character is processed. If there are more characters in the pattern after this special character and the next character is not another %, the program falls into a DOW loop. Remember: The % means that from 0 to any number of characters match. If there are more characters in the pattern to match, the LIKE procedure recursively processes the text and pattern until LIKE returns with a 0 return code, which means the program has successfully skipped the unknown number of characters it was supposed to ignore. This use of recursion makes the logic of this procedure simple.

Both LIKETEST and LIKE use the copybook that defines the prototype. In both cases, I have coded specific libraries and source files. You must change these /COPY statements to reflect the naming conventions used in your shop.

You now have a procedure you can use in other programs that need the LIKE functionality. This is not the type of program you would want to write over and over.

For instance, an inventory control program could display item number, item description, and item quantity in a subfile on the screen. A user who wants to find the item number for a particular item but doesn’t know the full description could put what he does know of the description, along with appropriate wildcards, in an input field on the screen. The program could then pass this pattern to the LIKE procedure for every description on the file and find just what the user wants to see.

* Purpose: LIKE will scan text looking for a user supplied pattern.

* It is functionally the same as the LIKE predicate.

* PATTERN- Text pattern to search for.

* % - matches on 0 to all characters.

* _ - matches on 1 character.

* ESC - Optional escape character.

* Use this immediately before either the '_'

* or '%' and that instance of that character

* will be treated as data and not as

* a special character.

*

* Example: text1 = 'ABACAAAD'

* pattern = 'AB_C%D'

* LIKE(text1:pattern') (This will match)

*

* SubProcedure ProtoType

D like PR 1P 0

D txtin 32767A VARYING

D pattern 32767A VARYING

D esc 1A OPTIONS(*NOPASS)

D textlen 10I 0 OPTIONS(*NOPASS)

D patlen 10I 0 OPTIONS(*NOPASS)

D txtindx 4P 0 OPTIONS(*NOPASS)

D patindx 4P 0 OPTIONS(*NOPASS)

Figure 1: Prototype for LIKE (LIKEPRO)

*****************************************************************

*

* To compile:

*

* CRTRPGMOD MODULE(xxx/LIKETEST) SRCFILE(xxx/QRPGLESRC) +

* TEXT('Program to test LIKE procedure')

*

* CRTPGM PGM(xxx/LIKETEST) MODULE(xxx/LIKETEST) +

* BNDSRVPGM(xxx/LIKE)

*****************************************************************

Fliketestd CF E WORKSTN

/COPY MAGWORK/SOURCE,LIKEPRO

D teststring S 32767A VARYING

D patstore S 32767A VARYING

C DOW *IN03 = *OFF

C EXFMT screen1

C CLEAR message

C SELECT

C WHEN *IN03 = *ON

C OTHER

C EVAL teststring = %TRIMR(textin)

C EVAL patstore = %TRIMR(pattern)

C IF LIKE(teststring:patstore) = 1

C EVAL message = 'Pattern does not match'

C ELSE

C EVAL message = 'Success!!'

C ENDIF

C ENDSL

C ENDDO

C EVAL *INLR = *ON

*****************************************************************

*

* To compile:

*

* CRTDSPF FILE(xxx/LIKETESTD) +

* SRCFILE(xxx/QDDSSRC) +

* TEXT('Display file for testing LIKE function')

*

*****************************************************************

A DSPSIZ(24 80 *DS3)

A PRINT

A R SCREEN1

A CA03(03 'Exit')

A 1 32'Test LIKE Procedure'

A DSPATR(HI)

A 8 7'Text:'

A TEXTIN 50A B 8 17CHECK(LC)

A 10 7'Pattern:'

A PATTERN 50A B 10 17CHECK(LC)

A 23 2'F3=Exit'

A COLOR(BLU)

A MESSAGE 70A O 24 2COLOR(RED)

C DOW pindx < plen + 1 AND

C tindx < txtlen + 1 AND

C error = 1

Figure 2: Test program (LIKETEST)

Figure 3: Display file used by test program (LIKETESTD)

Figure 4: Portion of LIKE procedure

BLOG COMMENTS POWERED BY DISQUS

LATEST COMMENTS

Support MC Press Online

$0.00 Raised:
$

Book Reviews

Resource Center

  • SB Profound WC 5536 Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application. You can find Part 1 here. In Part 2 of our free Node.js Webinar Series, Brian May teaches you the different tooling options available for writing code, debugging, and using Git for version control. Brian will briefly discuss the different tools available, and demonstrate his preferred setup for Node development on IBM i or any platform. Attend this webinar to learn:

  • SB Profound WP 5539More than ever, there is a demand for IT to deliver innovation. Your IBM i has been an essential part of your business operations for years. However, your organization may struggle to maintain the current system and implement new projects. The thousands of customers we've worked with and surveyed state that expectations regarding the digital footprint and vision of the company are not aligned with the current IT environment.

  • SB HelpSystems ROBOT Generic IBM announced the E1080 servers using the latest Power10 processor in September 2021. The most powerful processor from IBM to date, Power10 is designed to handle the demands of doing business in today’s high-tech atmosphere, including running cloud applications, supporting big data, and managing AI workloads. But what does Power10 mean for your data center? In this recorded webinar, IBMers Dan Sundt and Dylan Boday join IBM Power Champion Tom Huntington for a discussion on why Power10 technology is the right strategic investment if you run IBM i, AIX, or Linux. In this action-packed hour, Tom will share trends from the IBM i and AIX user communities while Dan and Dylan dive into the tech specs for key hardware, including:

  • Magic MarkTRY the one package that solves all your document design and printing challenges on all your platforms. Produce bar code labels, electronic forms, ad hoc reports, and RFID tags – without programming! MarkMagic is the only document design and print solution that combines report writing, WYSIWYG label and forms design, and conditional printing in one integrated product. Make sure your data survives when catastrophe hits. Request your trial now!  Request Now.

  • SB HelpSystems ROBOT GenericForms of ransomware has been around for over 30 years, and with more and more organizations suffering attacks each year, it continues to endure. What has made ransomware such a durable threat and what is the best way to combat it? In order to prevent ransomware, organizations must first understand how it works.

  • SB HelpSystems ROBOT GenericIT security is a top priority for businesses around the world, but most IBM i pros don’t know where to begin—and most cybersecurity experts don’t know IBM i. In this session, Robin Tatam explores the business impact of lax IBM i security, the top vulnerabilities putting IBM i at risk, and the steps you can take to protect your organization. If you’re looking to avoid unexpected downtime or corrupted data, you don’t want to miss this session.

  • SB HelpSystems ROBOT GenericCan you trust all of your users all of the time? A typical end user receives 16 malicious emails each month, but only 17 percent of these phishing campaigns are reported to IT. Once an attack is underway, most organizations won’t discover the breach until six months later. A staggering amount of damage can occur in that time. Despite these risks, 93 percent of organizations are leaving their IBM i systems vulnerable to cybercrime. In this on-demand webinar, IBM i security experts Robin Tatam and Sandi Moore will reveal:

  • FORTRA Disaster protection is vital to every business. Yet, it often consists of patched together procedures that are prone to error. From automatic backups to data encryption to media management, Robot automates the routine (yet often complex) tasks of iSeries backup and recovery, saving you time and money and making the process safer and more reliable. Automate your backups with the Robot Backup and Recovery Solution. Key features include:

  • FORTRAManaging messages on your IBM i can be more than a full-time job if you have to do it manually. Messages need a response and resources must be monitored—often over multiple systems and across platforms. How can you be sure you won’t miss important system events? Automate your message center with the Robot Message Management Solution. Key features include:

  • FORTRAThe thought of printing, distributing, and storing iSeries reports manually may reduce you to tears. Paper and labor costs associated with report generation can spiral out of control. Mountains of paper threaten to swamp your files. Robot automates report bursting, distribution, bundling, and archiving, and offers secure, selective online report viewing. Manage your reports with the Robot Report Management Solution. Key features include:

  • FORTRAFor over 30 years, Robot has been a leader in systems management for IBM i. With batch job creation and scheduling at its core, the Robot Job Scheduling Solution reduces the opportunity for human error and helps you maintain service levels, automating even the biggest, most complex runbooks. Manage your job schedule with the Robot Job Scheduling Solution. Key features include:

  • LANSA Business users want new applications now. Market and regulatory pressures require faster application updates and delivery into production. Your IBM i developers may be approaching retirement, and you see no sure way to fill their positions with experienced developers. In addition, you may be caught between maintaining your existing applications and the uncertainty of moving to something new.

  • LANSAWhen it comes to creating your business applications, there are hundreds of coding platforms and programming languages to choose from. These options range from very complex traditional programming languages to Low-Code platforms where sometimes no traditional coding experience is needed. Download our whitepaper, The Power of Writing Code in a Low-Code Solution, and:

  • LANSASupply Chain is becoming increasingly complex and unpredictable. From raw materials for manufacturing to food supply chains, the journey from source to production to delivery to consumers is marred with inefficiencies, manual processes, shortages, recalls, counterfeits, and scandals. In this webinar, we discuss how:

  • The MC Resource Centers bring you the widest selection of white papers, trial software, and on-demand webcasts for you to choose from. >> Review the list of White Papers, Trial Software or On-Demand Webcast at the MC Press Resource Center. >> Add the items to yru Cart and complet he checkout process and submit

  • Profound Logic Have you been wondering about Node.js? Our free Node.js Webinar Series takes you from total beginner to creating a fully-functional IBM i Node.js business application.

  • SB Profound WC 5536Join us for this hour-long webcast that will explore:

  • Fortra IT managers hoping to find new IBM i talent are discovering that the pool of experienced RPG programmers and operators or administrators with intimate knowledge of the operating system and the applications that run on it is small. This begs the question: How will you manage the platform that supports such a big part of your business? This guide offers strategies and software suggestions to help you plan IT staffing and resources and smooth the transition after your AS/400 talent retires. Read on to learn: