stringToTimeBaseFind the corresponding element of the TimeBases enumeration for a given time base string |
![]() |
This information is part of the Business Simulation Library (BSL). Please support this work and ► donate.
The function will return the element of the enumeration Types.TimeBases
that corresponds to a given unit of time given as a string. The string should be given in lower case letters and should be given either as a word or the unit symbol. If there is no match, the function will default to TimeBases.second
.
Functions.stringToTimeBase( timeBaseString ); // the string is to be given as lower case
stringToTimeBase( "month" ); // TimesBases.months
stringToTimeBase( "yrCal" ); // TimeBases.years
timeBaseString |
Type: String Description: String for a time base given in lower case |
---|
timeBase |
Type: TimeBases Description: Element in the enumeration corresponding to the string given |
---|
TimeBases.years
.