on 2023 Mar 09 10:39 AM
when i give some input as string it is automatically being received as in uppercase i want it to be received as the same string as given without changing in the case.
string = 'hElLo'
if I give the above string as the input it has to be stored in the variable as the same.
please help me.
Pls chk this code
DATA: T(10) VALUE 'abcdefghij',
STRING LIKE T.
STRING = T.
WRITE STRING.
TRANSLATE STRING TO UPPER CASE.
WRITE / STRING.
Regards
Christian Fritsch
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
8 | |
5 | |
2 | |
2 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.