programming-examples/asp/Miscellaneous/PNum Function.asp

26 lines
714 B
Plaintext
Raw Normal View History

2019-11-18 14:25:58 +01:00
<%
Private Function PNum(ByVal number)
Dim tmp, ext
If IsNumeric( number ) = False Then
PNum = Null
Else
Select Case CInt( Right( number, 2 ) )
Case 11, 12, 13
ext = "th"
Case Else
tmp = Right( number, 1 )
Select Case CInt( tmp )
Case 1
ext = "st"
Case 2
ext = "nd"
Case 3
ext = "rd"
Case Else
ext = "th"
End Select
End Select
PNum = CStr( number & ext )
End If
End Function
%>