Difference between revisions of "Changing Font from Upper to Lower Case"
From ArcoWiki
(Created page with " Category:Dmis_Tutorial Category:ReadMe3.6") |
|||
| Line 1: | Line 1: | ||
| + | [[File:DmisIntrinsicFunctions.PNG|thumb|right|600px|DMIS Intrinsic Functions]] | ||
| + | Add the Standard [[DMIS]] Intrinsic functions to convert to Lower and Upper case the strings to be sent to output or written to a file.<br /> | ||
| + | The functions are per the standard as per the following example: | ||
| + | |||
| + | <code> | ||
| + | DECL/CHAR,100,ORIGINAL,UPPER_CASE,LOWER_CASE,TMP<br /> | ||
| + | ORIGINAL=[[Assign|ASSIGN]]/'This is Upper AND Lower CASE'<br /> | ||
| + | UPPER_CASE=[[Assign|ASSIGN]]/UPC(ORIGINAL)<br /> | ||
| + | LOWER_CASE=[[Assign|ASSIGN]]/LWC(ORIGINAL)<br /> | ||
| + | <br /> | ||
| + | V(TEXT)=VFORM/ALL<br /> | ||
| + | DISPLY/TERM,V(TEXT)<br /> | ||
| + | TMP=[[Assign|ASSIGN]]/CONCAT('This is the original: ',ORIGINAL)<br /> | ||
| + | TEXT/OUTFIL,TMP<br /> | ||
| + | TEXT/OUTFIL,' '<br /> | ||
| + | TMP=[[Assign|ASSIGN]]/CONCAT('This is the ''UPPER CASE'' version: ',UPPER_CASE)<br /> | ||
| + | TEXT/OUTFIL,TMP<br /> | ||
| + | TEXT/OUTFIL,' '<br /> | ||
| + | TMP=[[Assign|ASSIGN]]/CONCAT('This is the ''lower case'' version: ',LOWER_CASE)<br /> | ||
| + | TEXT/OUTFIL,TMP<br /> | ||
| + | TEXT/OUTFIL,' '<br /> | ||
| + | DISPLY/OFF<br /> | ||
| + | |||
| + | </code> | ||
| + | |||
| + | [[it:Cambio delle Stringhe in Lower Case o Upper Case (Maiuscolo/Minuscolo)]] | ||
[[Category:Dmis_Tutorial]] | [[Category:Dmis_Tutorial]] | ||
[[Category:ReadMe3.6]] | [[Category:ReadMe3.6]] | ||
Revision as of 16:29, 18 October 2017
Add the Standard DMIS Intrinsic functions to convert to Lower and Upper case the strings to be sent to output or written to a file.
The functions are per the standard as per the following example:
DECL/CHAR,100,ORIGINAL,UPPER_CASE,LOWER_CASE,TMP
ORIGINAL=ASSIGN/'This is Upper AND Lower CASE'
UPPER_CASE=ASSIGN/UPC(ORIGINAL)
LOWER_CASE=ASSIGN/LWC(ORIGINAL)
V(TEXT)=VFORM/ALL
DISPLY/TERM,V(TEXT)
TMP=ASSIGN/CONCAT('This is the original: ',ORIGINAL)
TEXT/OUTFIL,TMP
TEXT/OUTFIL,' '
TMP=ASSIGN/CONCAT('This is the UPPER CASE version: ',UPPER_CASE)
TEXT/OUTFIL,TMP
TEXT/OUTFIL,' '
TMP=ASSIGN/CONCAT('This is the lower case version: ',LOWER_CASE)
TEXT/OUTFIL,TMP
TEXT/OUTFIL,' '
DISPLY/OFF