2007 Apr 18 11:47 AM
Hi,
how to convert the no without special characters??
tell me that exactcode.
Thanks
p.srikanth
2007 Apr 18 12:06 PM
hi
convert char to numc only numeric characters will be transfered.
regards,
veeresh
Hi,
how to convert the no without special characters??
tell me that exactcode.
Thanks
p.srikanth
2007 Apr 18 12:00 PM
try like this.
data : text (30) type c value '2@2541.>5',
len type i,
pos type i,
vchar
ftext(30).
len = strlen( text ).
do len times.
vchar = text+pos(1).
if vchar ca '1234567890'.
cocatenate ftext vchar into ftext.
endif.
pos = pos + 1.
enddo.
write : / ftext.
if it is not satisfying your requiremen please tell us with some test data..
regards
shiba dutta
2007 Apr 18 12:06 PM
hi
convert char to numc only numeric characters will be transfered.
regards,
veeresh
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |