Windows Scripting
  Home arrow Windows Scripting arrow Page 5 - VBScript: Converting and Formatting with F...
ASP Free Forums 
.NET  
ASP  
ASP Code  
ASP.NET  
ASP.NET Code  
BrainDump  
C#  
Code Examples  
Database  
Database Code  
IIS  
Microsoft Access  
MS SQL Server  
Visual Basic.NET  
Windows Scripting  
Windows Security  
XML  
ASP Web Hosting  
ASP.NET Web Hosting 
Mobile Linux 
App Generation ROI 
Windows Web Hosting
 
IBM® developerWorks 
Sun Developer Network 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
WINDOWS SCRIPTING

VBScript: Converting and Formatting with Functions
By: James Payne
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 5 stars5 stars5 stars5 stars5 stars / 1
    2008-05-27

    Table of Contents:
  • VBScript: Converting and Formatting with Functions
  • The Function with Character
  • Express Your In(teger) Self
  • CSng, the Loneliest Function of them All!
  • Witchy Woman Put a Hex On You

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    VBScript: Converting and Formatting with Functions - Witchy Woman Put a Hex On You


    (Page 5 of 5 )

    This little guy, the Hex() function, is used to return a string representing the hexadecimal value of a number. If you don't know what hexadecimal is, then pack up your computer and ship it to me, because you don't deserve it:


    <html>

    <head>

    <script type="text/vbscript">

    dim a

    a=9000

    document.write(Hex(8) & "<br />")

    document.write(Hex(a) & "<br />")

    document.write(Hex(10) & "<br />")

    document.write(Hex(100) & "<br />")

    document.write(Hex(1000) & "<br />")

    document.write(Hex(10000) & "<br />")

    document.write(Hex(100000) & "<br />")

    document.write(Hex(1000000) & "<br />")

    document.write(Hex(10000000))

    </script>

    </head>

    <body>

    </body>

    </html>

    Here is the result:

      8
      2328
      A
      64
      3E8
      2710
      186A0
      F4240
      989680

    Oct()...The Last of the Conversion Functions

    This final conversion function, the Oct() (I could have totally made a Doctor Octopus joke here) is similar to the Hex() except it returns an octal value. Here it is at work on the same values as before:


    <html>

    <head>

    <script type="text/vbscript">

    dim a

    a=9000

    document.write(Oct(8) & "<br />")

    document.write(Oct(a) & "<br />")

    document.write(Oct(10) & "<br />")

    document.write(Oct(100) & "<br />")

    document.write(Oct(1000) & "<br />")

    document.write(Oct(10000) & "<br />")

    document.write(Oct(100000) & "<br />")

    document.write(Oct(1000000) & "<br />")

    document.write(Oct(10000000))

    </script>

    </head>

    <body>

    </body>

    </html>

    The result is:

      10
      21450
      12
      144
      1750
      23420
      303240
      3641100
      46113200

    Do my eyes deceive me? Or is there actually time left to cover the Formatting Functions? Here they are, all four, in one breathtaking coding example:


    <html>

    <head>

    <script type="text/vbscript">

    document.write(FormatCurrency(500)) & "<br />"

    document.write("The date is: ")

    document.write(FormatDateTime(Date())) & "<br />"

    document.write(FormatNumber(500)) & "<br />"

    document.write(FormatPercent(10/100))

    </script>

    </head>

    <body>

    </body>

    </html>

    This gives us the result of:

      $500.00
      The date is: 2/21/2008
      500.00
      10.00%

    Okay, so that isn't exactly everything there is to know about the Formatting functions; I kind of fooled you. But it is a preview of them at their simplest, and you can certainly use them that way. And to be fair, I do promise to show you how to use them in all their glory in a future article.

    In our next article or two we will discuss the Math functions that VBScript offers. There's going to be a lot of scary-looking symbols and words floating around, so make sure you wear a safety helmet.

    Till then...


    DISCLAIMER: The content provided in this article is not warranted or guaranteed by Developer Shed, Inc. The content provided is intended for entertainment and/or educational purposes in order to introduce to the reader key ideas, concepts, and/or product reviews. As such it is incumbent upon the reader to employ real-world tactics for security and implementation of best practices. We are not liable for any negative consequences that may result from implementing any information covered in our articles or tutorials. If this is a hardware review, it is not recommended to open and/or modify your hardware.

       · In our last tutorial, I tried to cover as many of the Conversion and Formatting...
     

    WINDOWS SCRIPTING ARTICLES

    - Working With Arrays in VBScript
    - Compressed Folders in WSH
    - Using .NET Interops in VBScript
    - Nilpo`s Scripting Secrets, Vol I
    - Database operations using Silverlight 2.0 WC...
    - Modifying XML Files in WSH
    - Reading XML Files in WSH
    - Visual Basic 2005 XML Programming Using XML ...
    - Creating an XML Document in WSH
    - Introducing Two-Way Data Binding using Silve...
    - Silverlight 2.0 Application Development with...
    - Burning Multisession CDs with IMAPI2 in WSH
    - Creating a Silverlight 2.0 Application that ...
    - Burning CDs with the IMAPI2 Control
    - Burning CDs in Windows XP with WSH

     
    Best Practices for Windows Vista Migration Presentation
    Dell and Microsoft recently held a series of face-to-face seminars entitled, &qu....

     
    Creating a Culture for Code Reuse
    If you oversee development teams you know that like it or not proprietary and ex....

     
    Keys to Web Application Acceleration: Advances in Delivery Systems
    Accelerate Web apps by up to 5x. Ensure significantly faster access to the Web a....

     
    Optimizing Application Monitoring
    Tired of finding out from your customers that you're offline? This white paper e....

     
    Solaris to Solaris Migration -- Migrating applications from Sun SPARC to Dell PowerEdge R900
    This comprehensive Migration Guide reviews the approach that Principled Technolo....

     




    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 4 hosted by Hostway
    Stay green...Green IT