Difference between revisions of "Changing Font from Upper to Lower Case"

From ArcoWiki
Jump to: navigation, search
 
(2 intermediate revisions by one other user not shown)
Line 1: Line 1:
 
[[File:DmisIntrinsicFunctions.PNG|thumb|right|600px|DMIS Intrinsic Functions]]
 
[[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 />
+
From 3.6 it has been implemented 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:
 
The functions are per the standard as per the following example:
  
Line 23: Line 23:
 
DISPLY/OFF<br />
 
DISPLY/OFF<br />
  
</code>
+
[[it:Modifica del carattere da maiuscolo a minuscolo]]
 
+
[[zh-cn:将字体从大写更改为小写]]
[[it:Cambio delle Stringhe in Lower Case o Upper Case (Maiuscolo/Minuscolo)]]
+
[[pt:Mudando a fonte de maiúscula para minúscula]]
 +
[[de:Ändern der Schriftart von Groß- in Kleinschreibung]]
 +
[[es:Cambio de fuente de mayúscula a minúscula]]
 +
[[en:Changing Font from Upper to Lower Case]]
  
 
[[Category:Dmis_Tutorial]]
 
[[Category:Dmis_Tutorial]]
 
[[Category:ReadMe3.6]]
 
[[Category:ReadMe3.6]]

Latest revision as of 12:51, 4 June 2018

DMIS Intrinsic Functions

From 3.6 it has been implemented 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