C# is your friend so easy to parse dates
i also had it output just the numeric month as another example
Using c# dont need to break the date apart can process it all together and customize output
Function ParseDateExampleCs
for more info see
Standard Date and Time Format Strings
Parsing Date and Time Strings in .NET
Custom Date and Time Format Strings
i also had it output just the numeric month as another example
Using c# dont need to break the date apart can process it all together and customize output
Function ParseDateExampleCs
_s.timeformat("{dd-MMM-yy}" 0)
out _s
str code=
;using System;
;using System.Globalization;
;public class Example
;{
;,,public static string StaticFunc(string date)
;,,{
;,,,,DateTime parsedDate = DateTime.Parse(date);
;,,,,Console.WriteLine(parsedDate.ToString("MM"));
,,,,;return parsedDate.ToString("dd/MM/yy");
;,,}
;}
str R=CsFunc(code _s)
out R
Standard Date and Time Format Strings
Parsing Date and Time Strings in .NET
Custom Date and Time Format Strings