Results 1 to 2 of 2

Thread: Javascript: Data conversion

  1. #1

    Thread Starter
    Fanatic Member coox's Avatar
    Join Date
    Oct 1999
    Posts
    550

    Javascript: Data conversion

    I have the following line of code, which results in, for example, 0170.00 being entered in the text field:
    Code:
    frmMain.txtMinimum.value = arrCompanies[intCheckLoop].slice(48,52) + "." + arrCompanies[intCheckLoop].slice(52,54)
    What would be the best way, using Javascript, to get any leading zeros removed? I'm used to VB where I'd just use:
    Code:
    frmMain.txtMinimum.value = Value(arrCompanies[intCheckLoop].slice(48,52)) + "." + arrCompanies[intCheckLoop].slice(52,54)
    Cheers!
    Last edited by coox; Jul 8th, 2003 at 10:39 AM.
    Nick Cook
    VB6 (SP6)

  2. #2
    Junior Member
    Join Date
    Jul 2002
    Posts
    26
    You might try math.parseInt() in the place of Value() assuming that it is an integer. There might be a parseDouble() but I am not sure about that. If it isn't an integer and no parseDouble() exists, you could split the string by the period and then parseInt() twice and combine them with math, but that might get complex. Hope that this helps.
    ~evlich

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width