Difference between revisions of "Format Zip Code"
From MidrangeWiki
DaveLClarkI (talk | contribs) |
DaveLClarkI (talk | contribs) (→Service Procedure) |
||
Line 22: | Line 22: | ||
<pre> | <pre> | ||
**free | **free | ||
+ | ctl-opt NoMain AlwNull(*UsrCtl) Debug Option(*SrcStmt:*NoDebugIo) | ||
+ | DatFmt(*ISO) TimFmt(*ISO) DftActGrp(*No) ActGrp(*Caller); | ||
//============================================================================== | //============================================================================== |
Revision as of 16:28, 14 December 2018
Summary
The following are the RPG/LE fully free-form definitions and instructions needed for using the Format Zip Code service procedure. This service procedure simply allows the caller to (re)format a USA zip code.
Service Prototype
Place the following in a separate copybook for inclusion in both the caller and the service program source members.
**free //============================================================================== // Format USA zip code or foreign postal code for output. //============================================================================== dcl-pr GenUtl_FormatZipCode varchar(10); ZipValue varchar(10) const; end-pr;
Service Procedure
Place the following in a service program source member.
**free ctl-opt NoMain AlwNull(*UsrCtl) Debug Option(*SrcStmt:*NoDebugIo) DatFmt(*ISO) TimFmt(*ISO) DftActGrp(*No) ActGrp(*Caller); //============================================================================== // Format USA zip code or foreign postal code for output. //============================================================================== dcl-proc GenUtl_FormatZipCode export; dcl-pi *n varchar(10); ZipValue varchar(10) const; end-pi; dcl-s ZipCode like(ZipValue); ZipCode = GenUtl_StripFormatting(%trim(ZipValue): ' +-.'); if %len(ZipCode) = *zero // if blank or not GenUtl_isDigits(ZipCode); // or not all digits return ZipCode; // return as-is (alpha postal code?) endif; if %len(ZipCode) <= 5; // no zip+4 present? return %editc(%int(ZipCode):'X'); // return 5-digit zip code endif; return %trim(%editw(%int(ZipCode):'0 - ')); // return formatted zip+4 end-proc;
References
- GenUtl_isDigits service procedure
- GenUtl_StripFormatting service procedure