PerlElvir
Technical User
- Aug 23, 2005
- 68
Actualy I need also and numbers.
So I have:
$date = 10 déc. 2005
how I can get
$day = 10
$month = déc.
$year = 2005
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
my ($day, $month, $year) = /(\d+)\s+(\S+)\s+(\d+)/;
my ($var1, $var2, $var3) = split (/\s+/,$date,3);