Thje following code works under windows, but fails under Mono:
//convert date from yyyy-mm-dd to mm/dd/yy
string p5 = @"(\d+)-(\d+)-(\d+) (\d+):(\d+):(\d+)";
Match m5 = Regex.Match(date, p5);
if (m5.Success)
{
string year = m5.Groups[1].ToString();
string month = m5.Groups[2].ToString();
string day = m5.Groups[3].ToString();
string hour = m5.Groups[4].ToString();
string min = m5.Groups[5].ToString();
string sec = m5.Groups[6].ToString();
string newdate = string.Format("{0:00}/{1:00}/{2:00}
{3:00}:{4:00}:{5:00}",
month, day, year, hour, min, sec);
Console.WriteLine("Result: " + assertion);
}
Any suggestions appreciated.
--
View this message in context:
http://www.nabble.com/Regular-Expressions-incompatibility-tp21388320p21388320.html
Sent from the Mono - General mailing list archive at Nabble.com.
_______________________________________________
Mono-list maillist - [email protected]
http://lists.ximian.com/mailman/listinfo/mono-list