Maple Professionel
Maple Académique
Maple Edition Étudiant
Maple Personal Edition
Maple Player
Maple Player for iPad
MapleSim Professionel
MapleSim Académique
Maple T.A. - Suite d'examens de classement
Maple T.A. MAA Placement Test Suite
Möbius - Didacticiels de mathématiques en ligne
Machine Design / Industrial Automation
Aéronautique
Ingénierie des véhicules
Robotics
Energie
System Simulation and Analysis
Model development for HIL
Modélisation du procédé pour la conception de systèmes de contrôle
Robotics/Motion Control/Mechatronics
Other Application Areas
Enseignement des mathématiques
Enseignement de l’ingénierie
Enseignement secondaire et supérieur (CPGE, BTS)
Tests et évaluations
Etudiants
Modélisation financière
Recherche opérationnelle
Calcul haute performance
Physique
Webinaires en direct
Webinaires enregistrés
Agenda des évènements
Forum MaplePrimes
Blog Maplesoft
Membres Maplesoft
Maple Ambassador Program
MapleCloud
Livres blancs techniques
Bulletin électronique
Livres Maple
Math Matters
Portail des applications
Galerie de modèles MapleSim
Cas d'Etudes Utilisateur
Exploring Engineering Fundamentals
Concepts d’enseignement avec Maple
Centre d’accueil utilisateur Maplesoft
Centre de ressources pour enseignants
Centre d’assistance aux étudiants
StringTools[ParseTime] - parse a string containing date and time information
Calling Sequence
ParseTime( fmt, str )
Parameters
fmt
-
string; format specifier
str
string; string to be parsed
Description
The ParseTime( fmt,str ) command parses the string str, assumed to contain date and time data, according to the parsing specification given by the format string fmt.
The time format string is a Maple string that can contain time and date format conversion specifiers, introduced by a character. This works in a manner similar to the conversion specifiers used in printf or sscanf, but the defined conversion specifiers are different. The format conversion specifiers are a subset of those supported by the FormatTime procedure.
The string str to be parsed is assumed to contain date and time information in the format described by fmt. Characters in fmt and str are matched, with the format conversion specifiers in fmt acting as placeholders or wildcards for the actual date and time data present in the string str. If the two strings match, then the date and time data extracted from str are returned in the form of a record, described below. If the strings fail to match, then an exception is raised.
The following table lists the known conversion specifiers and their meanings.
%%
the string "%"
%a
abbreviated weekday name
%A
the full weekday name
%b
abbreviated month name
%B
full month name
%c
a standard date and time representation
%C
the century number (the year divided by 100 and truncated to an integer in the range 01 - 99)
%d
a two-digit day of the month number
%D
the date in the form MM/DD/YY.
%e
the day of the month (01-31).
%H
the hour in a 24-hour clock (00-23).
%I
the hour in a 12-hour clock (01-12).
%j
day number (01-366).
%k
the hour in a 24-hour clock ( 0-23).
%l
the hour in a 12-hour clock ( 1-12).
%m
the month number (01-12).
%M
the minute after the hour (00-59).
%n
a newline character
%p
a.m. or p.m.
%r
time representation for a 12-hour clock (using %p).
%R
the same as %H:%M.
%S
seconds after the minute (00-61)
%t
a tab character
%T
same as %H:%M:%S.
%u
weekday as a decimal number (1-7; 1 = Sunday).
%U
week number of the year (00-53); Sunday is the first day of week 1.
%V
The ISO 8601 week number (01-53).
%w
weekday (0-6); 0 = Sunday.
%x
a standard date representation.
%X
a standard time representation.
%y
year within the century (00-99)
%Y
year including the century (YYYY)
%Z
time zone name or abbreviation, if available.
The record returned by ParseTime contains slots with the following meanings and ranges of values.
second
seconds after the minute
0-61
minute
minutes after the hour
0-59
hour
hour of the day
0-23
monthDay
day of the month
1-32
month
month of the year
1-12
year
the year
0-9999
weekDay
day of the week
1-7
yearDay
day of the year
1-366
dst?
if known, whether daylight savings time is in effect
true, false
Not all slots of this record will be updated for a given pair of inputs. Only those slots whose values can be determined from the given data will have meaningful values.
Examples
See Also
FormatMessage, FormatTime, iolib, printf, sscanf, string, StringTools
Download Help Document