Hi ,
I am using to display DATE in such a way that FORMAT(TODAY,0,’<day,2> <month,2> ')
For this I got 16042014 .
But I need 1 6 0 4 2 0 1 4
Can any one help me regarding this
Hi ,
I am using to display DATE in such a way that FORMAT(TODAY,0,’<day,2> <month,2> ')
For this I got 16042014 .
But I need 1 6 0 4 2 0 1 4
Can any one help me regarding this
You need to take an array variable and store the each value in array variable…
ex: datearray[1] = 1
datearray[2] = 6 etc
HI MOHANA ,
THANKS FOR THE REPLY . BUT IT WILL BE A LONG PROCEDURE . IS THERE ANY SIMPLE SOLUTION FOR THIS?
try this
datetext1:=FORMAT(TODAY,0,’<day,2><month,2>’) ;
intlen:=STRLEN(datetext1);
FOR i:=1 TO intlen DO
datetext2+=COPYSTR(datetext1,i,1) +’ ';
MESSAGE(’%1…%2’,datetext1,datetext2)