Tagged Questions

20
votes
9answers
5k views

Is there an easy way in .NET to get “st”, “nd”, “rd” and “th” endings for numbers?

I am wondering if there is a method or format string I'm missing in .NET to convert the following: 1 to 1st 2 to 2nd 3 to 3rd 4 to 4th 11 to 11th 101 to 101st 111 to 111th This link ...
1
vote
2answers
658 views

Modify regex to match dates with ordinals “st”, “nd”, “rd”, “th”

How can the regex below be modified to match dates with ordinals on the day part? This regex matches "Jan 1, 2003 | February 29, 2004 | November 02, 3202" but I need it to match also: "Jan 1st, 2003 | ...