Click here to Skip to main content
Licence 
First Posted 19 Mar 2003
Views 57,676
Bookmarked 22 times

Number Conversion (1 to "1st", etc)

By | 19 Mar 2003 | Article
An article on Number Conversion from the basic number to the number with a following suffix. (ie, 1 to "1st")

Introduction

This little function is really simple, but comes in very handy. I have come across this issue many times and usually just dodge it when I can, but finally I had a project that insisted that I format some numbers this way, so alas, here I am.

Using The Code

This is just a basic function call. Send it any number greater than 0 and it will return the number formatted with a "st", "nd", "rd" or "th" after it. Sending it "" will cause an error message to be displayed.

dim iTestNumber 'number to be passed to function
dim sNewNumber  'string returned from function
dim x           'loop incriment

' this function will format a number with it's given suffix. (1st, 2nd, 3rd)<BR><BR>Function BuildNumber(iNum) <BR>    dim sNewNum
    sNewNum = iNum
    
    if right(iNum, 2) = "11" or right(iNum, 2) = "12" or _
       right(iNum, 2) = "13" then
        sNewNum = sNewNum & "th"
    else
        iNum = right(iNum, 1)

        select case iNum
            case "1"
                sNewNum = sNewNum & "st"
            case "2"
                sNewNum = sNewNum & "nd"
            case "3"
                sNewNum = sNewNum & "rd"
            case ""
                sNewNum = "error"
            case else
                sNewNum = sNewNum & "th"
        end select

    end if
    if sNewNum = "error" then
        response.write "There was an error with the date passed to the "<BR>        response.write "function. The date must be an integer greater "<BR>        response.write "than 0 and not equal to blank. Please use the "<BR>        response.write "back button to fix the problem or contact customer "<BR>        response.write "support. Thank you."
        response.End
    end if

    buildnumber = sNewNum    
end function

for x = 1 to 100
   iTestNumber = x
   sNewNumber = BuildNumber(iTestNumber)
   
   response.write("This is the value sent to the function: "<BR>   response.write iTestNumber & "<br>")
   response.write("This is the value returned from the function: "<BR>   response.write "sNewNumber & "<br><HR>")
next

response.end

Points of Interest

Watch out for the little catches such as "11", "12" and "13" all end in "th" rather than "st", "nd" and "rd". I think those are the only exceptions though. It should work for negative numbers, but I'm not sure why you would want to do that. But that's up to you.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

glitch177k

Web Developer

United States United States

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionAnother way PinmemberJBress22:47 9 Sep '11  
GeneralError PinmemberEosian6:13 1 Aug '05  
GeneralRe: Error Pinmemberglitch177k7:03 1 Aug '05  
GeneralRe: Error PinmemberEosian7:43 1 Aug '05  
GeneralMore on formatting Pinmemberallia9:54 3 Nov '03  
GeneralRe: More on formatting Pinmemberglitch177k10:11 3 Nov '03  
GeneralThanks! Pinmemberallia10:14 3 Nov '03  
General11, 12 and 13 PinsussSimon Armstrong23:53 20 Mar '03  
GeneralRe: 11, 12 and 13 Pinmemberglitch177k4:05 21 Mar '03  
GeneralRe: 11, 12 and 13 PinmemberRamona7:26 25 Mar '03  
GeneralRe: 11, 12 and 13 Pinmemberglitch177k8:07 25 Mar '03  
GeneralRe: 11, 12 and 13 PinmemberRamona8:47 25 Mar '03  
GeneralRe: 11, 12 and 13 PinmemberRamona9:02 25 Mar '03  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web01 | 2.5.120517.1 | Last Updated 20 Mar 2003
Article Copyright 2003 by glitch177k
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid