VBScript TimeValue Function



The TimeValue Function converts the given input string to a valid time.

Syntax

TimeValue(StringTime) 

Example

<!DOCTYPE html>
<html>
   <body>
      <script language = "vbscript" type = "text/vbscript">
         document.write(TimeValue("20:30") & "<br />")
         document.write(TimeValue("5:15") & "<br />")
         document.write(TimeValue("2:30:58") & "<br />")

      </script>
   </body>
</html>

When you save it as .html and execute it in Internet Explorer, then the above script will produce the following result −

8:30:00 PM
5:15:00 AM
2:30:58 AM
vbscript_date.htm
Advertisements