Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Problem trying to Parse from a date
Message
 
À
04/10/2001 15:07:35
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00564414
Message ID:
00564435
Vues:
25
This message has been marked as the solution to the initial question of the thread.
>I am running into an error trying to parse out the numbers from a date.
>My ulimate goal is to get the number 10042001 from 10/04/2001.
>my code:
>
>mydate = date()
>myfile = substr(alltr(str(mydate)),1,2)
>myfile = myfile + substr(alltr(mydate),4,2)
>myfile = myfile + substr(alltr(mydate),7,4)
>
>Can anyone point me in the right direction where I could solve this problem?
>Thanks >> Wes

If you are flexible to the date format you could just do this which will always return the format YYYYMMDD regardless of the SET CENTURY or SET DATE settings.

myfile = myfile + DTOS(date())

If you aren't flexible with the date format

myfile = myfile + STRTRAN(dtoc(DATE()),'/','')
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform