UPPER-CASE

Für die Umsetzung wird die Standard String Methode ToUpper verwendet.

Beispiele

  1. MOVE FUNCTION UPPER-CASE (L-BUF-STR)
  2. TO LLPPMES-PME-PRAE-LBZ
Llppmes.PmePraeLbz = LBufStr.ToUpper();

<html><hr/></html>

  1. MOVE FUNCTION UPPER-CASE (L-BUF-TXT(1:1))
  2. TO L-BUF-TXT(1:1)
LBufTxt = LBufTxt.Substitute(1 - 1, 1, LBufTxt.Substring(1 - 1, 1).ToUpper());