Difference between revisions of "Left String"
From MidrangeWiki
DaveLClarkI (talk | contribs) (Created page with "Category:Service Procedures == Summary == The following are the RPG/LE fully free-form definitions and instructions needed for using the {{AN}} service procedure. This se...") |
DaveLClarkI (talk | contribs) (→Examples) |
||
(8 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
+ | [[Category:Sample Code]] | ||
[[Category:Service Procedures]] | [[Category:Service Procedures]] | ||
== Summary == | == Summary == | ||
The following are the RPG/LE fully free-form definitions and instructions needed for using the {{AN}} service procedure. This service procedure simply allows the caller to extract the left-most '''''n''''' characters from a supplied string. | The following are the RPG/LE fully free-form definitions and instructions needed for using the {{AN}} service procedure. This service procedure simply allows the caller to extract the left-most '''''n''''' characters from a supplied string. | ||
− | + | By [[User:DaveLClarkI|Dave Clark]] | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | | | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | == Service | + | == Service Prototype == |
+ | Place the following in a separate copybook for inclusion in both the caller and the service program source members. | ||
<pre> | <pre> | ||
**free | **free | ||
Line 36: | Line 19: | ||
PadChar char(1) const options(*nopass); | PadChar char(1) const options(*nopass); | ||
end-pr; | end-pr; | ||
+ | </pre> | ||
+ | |||
+ | == Service Procedure == | ||
+ | Place the following in a service program source member. | ||
+ | <pre> | ||
+ | **free | ||
+ | ctl-opt NoMain AlwNull(*UsrCtl) Debug Option(*SrcStmt:*NoDebugIo) | ||
+ | DatFmt(*ISO) TimFmt(*ISO); | ||
//============================================================================== | //============================================================================== | ||
Line 70: | Line 61: | ||
endif; | endif; | ||
− | return NewString; // return the | + | return NewString; // return the prefix string |
end-proc; | end-proc; | ||
</pre> | </pre> | ||
+ | |||
+ | == Examples == | ||
+ | See the [[Complete]] service procedure. | ||
+ | |||
+ | See the [[Diagnose]] service procedure. | ||
+ | |||
+ | See the [[Escape]] service procedure. | ||
+ | |||
+ | See the [[Inform]] service procedure. |
Latest revision as of 17:36, 17 December 2018
Summary
The following are the RPG/LE fully free-form definitions and instructions needed for using the Left String service procedure. This service procedure simply allows the caller to extract the left-most n characters from a supplied string.
By Dave Clark
Service Prototype
Place the following in a separate copybook for inclusion in both the caller and the service program source members.
**free //============================================================================== // Return leftmost number of bytes -- optional padding on right. //============================================================================== dcl-pr GenUtl_LeftString varchar(256) rtnparm; OrigString varchar(65535) const; ByteCount packed(3:0) const; PadChar char(1) const options(*nopass); 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); //============================================================================== // Return leftmost number of bytes -- optional padding on right. //============================================================================== dcl-proc GenUtl_LeftString export; dcl-pi *n varchar(256) rtnparm; OrigString varchar(65535) const; ByteCount packed(3:0) const; PadChar char(1) const options(*nopass); end-pi; dcl-s StrLeng like(ByteCount); dcl-s NewString varchar(256) inz(''); dcl-s PadString char(256) inz(*blanks); // prevent errors StrLeng = ByteCount; // start with bytes requested if %parms < %parmnum(PadChar) // if no padding and and StrLeng > %len(OrigString); // request greater than string supplied StrLeng = %len(OrigString); // take supplied string length endif; if StrLeng > *zero; // if something to return if StrLeng > %len(PadString); // if more than what can return StrLeng = %len(PadString); // set to max return length endif; if %parms < %parmnum(PadChar); // if no padding NewString = %subst(OrigString: 1: StrLeng); else; // else, with left padding NewString = %subst( OrigString + %xlate(' ': PadChar: PadString) : 1: StrLeng ); endif; endif; return NewString; // return the prefix string end-proc;
Examples
See the Complete service procedure.
See the Diagnose service procedure.
See the Escape service procedure.
See the Inform service procedure.