How do I get a date out of this: 14:35:42.0868394-08:00  ???

I am receiving an XML document from a person who generates it via a .Net page. This is supposed to be a date/time object.  In his .Net code he uses the object just fine.  I have asked that he translate it to something more standards like {ts '2012-03-01 15:59:45'} but he won't and said I should just figure it out... Nice, huh?
Does anyone have any idea how I can get a date out of this value:
14:35:42.0868394-08:00 ???
I know that the last part (-08:00) refers to Pacific Standard Time.  I am pretty sure that the 14:35:42 represents 2:35:42  PM.  If that is correct, the 0868394 must represent 3/1/2012 (the day I ran the report).
Please help.

HugoSchmidt wrote:
I am receiving an XML document from a person who generates it via a .Net page. This is supposed to be a date/time object.  In his .Net code he uses the object just fine.  I have asked that he translate it to something more standards like {ts '2012-03-01 15:59:45'} but he won't and said I should just figure it out... Nice, huh?
Does anyone have any idea how I can get a date out of this value:
14:35:42.0868394-08:00 ???
I know that the last part (-08:00) refers to Pacific Standard Time.  I am pretty sure that the 14:35:42 represents 2:35:42  PM.  If that is correct, the 0868394 must represent 3/1/2012 (the day I ran the report).
-08:00 may indeed refer to the time zone. However, if you're expecting the date-time, then he is shortchanging you. What he has sent you is just the time in hours, minutes and seconds, with the seconds expressed in 7 decimal places.
You could just ignore the decimal places, and extract the time as follows
<cfset datetime_string = "14:35:42.0868394-08:00">
<cfset the_time            = listgetat(datetime_string, 1, ".")>
<cfoutput>#the_time#</cfoutput>

Similar Messages

  • How can I get my data out of a crashed drive?

    I need help. Crashed hard drive. How can I get the data out?

    First have to define what a 'crashed drive' is, so we'll know how to respond.
    If you boot to an installer DVD does Disk Utility see the drive? What does it tell you about the drive?
    If the drive is showing up but not mounting it may be possible to repair it and get the data off yourself -
    But if it isn't even showing up then you may need to take it to a recovery specialist to get the data off it. This is costly and not guaranteed to always work.
    Did you replace the drive in the MBP and install a new OS on a new drive?
    Or is it still in the MBP and you are trying to recover it from there?
    One type of 'crash' is a head crash, usually caused by a impact or jarring to the drive while it is spinning which bounces the heads off the platters. This removes some of the magnetic media off the platters typically rendering it unrecoverable.
    So first priority is tell us precisely where you are with this drive, what you see, what you have tried, what the symptoms are, and what you need to accomplish.
    Rick

  • How do I get my data out of Keeper HD after updating iOS 7.1

    Recently I updated my iPad to iOS 7.1 and now my free Keeper HD won't open so I can get my data out.Keeper support say they can't assist

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased. http://support.apple.com/kb/ht1430
    Troubleshooting apps purchased from the App Store
    http://support.apple.com/kb/TS1702
    Delete the app and redownload.
    Downloading Past Purchases from the iTunes Store, App Store and iBooks Store
    http://support.apple.com/kb/ht2519
     Cheers, Tom 

  • How can I get my data out of my broken Macbook Pro?

    My macbook pro was working weird for no reason at Friday, and it also cannot turn on at Saturday suddenly, I didn't have time to backup my laptop before it stop working. Is this a response of Apple to help me take my data out of my broken laptop? Even I am still covered by applecare, they told me I need pay for extra 99 dollars for backup my data to my external hard drive.

    What happens when you try to boot up?
    Troubleshooting: My computer won't turn on
    Can you boot into Target Disk Mode?
    How to use and troubleshoot FireWire target disk mode - Apple Support
    Yo may have to take the HD out, insert it into an external enclosure and then connect to another computer.

  • How do I get my data from Sync account after I reformat my computers without backup favourites?

    Hello,
    I formatted my computer without backup all of my favourites in Firefox. I have Firefox sync account set up before that between the 2 computers but both of them have formatted. Now, how do I get the data out from my Sync account? Did Firefox save my data on their server and how can I check that?
    Thanks,

    Also:
    *If you have regenerated your Sync key or reset your Sync password, you can not recover your previous data
    *IMPORTANT - write down your Sync key as instructed in the original set up of Sync
    *if you have another device (computer or mobile) paired to the computer where you are having a problem, you can either:
    *#pair the problem computer to that other device
    *#get the Sync key from that other device
    '''<u>Remember</u>''', Sync was never intended for backup. The reason for its existence is to sync-up 2 devices. To back up your Firefox profile, which you should do frequently, to another drive or a pin/thumb drive or other backup media, see:
    *https://support.mozilla.org/en-US/kb/back-and-restore-information-firefox-profiles
    *http://kb.mozillazine.org/Profile_backup
    *https://support.mozilla.org/en-US/kb/Recovering%20important%20data%20from%20an%20old%20profile
    *http://kb.mozillazine.org/Recovering_a_missing_profile

  • Can't get my data out of palm tungsten c- palm desktop crashes

    I have been a tungsten c user for many years. Now that HP has discontinued support, I would like to get my data out and transfer it to anothr device. I have backed up with hotsync on a daily basis. When I load palm desktop (PD), it crashes. I have 4 computers: a Dell 700 m with win xp, an optiplex with win xp, an optiplex with vista and a toshibal laptop with win7 64 bit. I have downloaded new copies of palm desktop 4.4, and tried the access version of 6 something. The desktop loads, waits 2 seconds, then I get the message .. has created an error and has to close. I checked, the MA file is there and seems to have the correct date. How do I get my data out if palm desktop will not start?
    PS I disabled antivirus during installation, uninstalled the old version and rebooted before trying to open the PD.
    Post relates to: Tungsten C

    >
    Well I went ahead and made separate methods to return each value. I suppose that will work just as well, especially since now I don't have to declare a bunch of strings and int's to hold the data and pass to the method.
    >
    Well this would never work anyway
    public void getData(String n, int num, String c, String d)None of those can be changed within the method. Strings are immutable and 'int' is passed by value. Each of those parameters will have the same value after the method exits as they did before it was called.
    Your book class should be using 'setters' to set the value of its instance variables.

  • How to get performance data out of SCOM and into a 3rd party management tool

    Hi
    I  am creating an integration between a 3rd party management tool and System Center Operations Manager 2012 R2.  I need to export performance data from SCOM into our application for both HyperV servers and virtual machines. Our application runs on
    linux so I cannot do any .NET programming.
    What is the best way to do this? I am aware of using the Usage SPF web service but this will not share performance data for the hyperv servers, just the virtual machines .
    thanks in advance

    Hi,
    We can use SQL query to get SCOM data out, but about how to send those data into your application, this should be related with how you develop your application.
    Here is an article about Operations Manager integation, hope it helps:
    http://social.technet.microsoft.com/wiki/contents/articles/12804.system-center-2012-integration-guide-operations-manager.aspx
    Regards,
    Yan Li
    Regards, Yan Li

  • HT4061 how do i get i pad out of recovery without losing data?

    how do i get i pad out of recovery mode without losing data ?

    Once in Recovery Mode you need to Proceed...
    See Here  >  http://support.apple.com/kb/HT1808
    You may need to try this More than Once...
    Be sure to Follow ALL the Steps...

  • HT4623 how do i get my phone out of recovery mode without restoring it. I have nothing backed up to icloud and i really cant lose all of my data!

    how do i get my phone out of recovery mode without restoring it. I have an iphone 4. i have nothing backed up to icloud and i really cant lose all of my data

    You don't. Once it's in recovery mode, anything that was on the phone is already gone.

  • TS3988 My wife bought an iPad Air and synced contact from our PC (Outlook), now all our contacts in Outlook have gone and we have to go to iCloud to get them, and even then they are a bit jumbled. How do I get my data back onto my PC?

    My wife bought an iPad Air and synced contact from our PC (Outlook), now all our contacts in Outlook have gone and we have to go to iCloud to get them, and even then they are a bit jumbled. How do I get my data back onto my PC?

    If you can see the iCloud contacts in Outlook, you can copy them back to your PC by selecting all the contacts (click one, then press Control-A), then drag and drop the selected contacts to Contacts under My Contacts on the left sidebar of Outlook.
    If you want to copy your calendar back to Outlook, select your iCloud calendar on the left sidebar of Outlook, switch to the list view (select View from the ribbon, then click Change View>List), select your events (click on a single event, then press Control-A), then control drag and drop them to Calendar under My Calendars on the left sidebar.
    Then you can sign out of iCloud on the iCloud control panel and your local copies will still be there.  If you want to add your iCloud email account back to iCloud, you can do this with these settings: http://support.apple.com/kb/HT4864.

  • If someone has wiped my ipad and changed passwords on icloud how do i get my data back

    if someone has wiped my ipad and changed passwords on icloud how do i get my data back? please could someone help me out thanks

    How did they wipe it?  By using Find My iPad and performing a wipe?  If so, that means they have your icloud ID and password, not a good thing.
    You could try connecting it to iTunes and performing a restore from iCloud.  But if they changed password, then you are out of the loop.  How did they get your password in order to change it?

  • I have a macbook air bought in 2010 wit liquid damage that might has affected the SSD card. I need to get my data but apple won't help. Authorized dealers never seem to have the same model to try whether the SSD card works. How can I get my data quickly?

    Hi
    I have a macbook air bought in 2010. It has liquid damage that might or might not affected the SSD card. I need the data on my SSD card for work and I need it urgently. Apparently Apple won't get the data out, even if I have apple care... Licensed apple dealers need to have the same macbook air model so they can insert the SSD card and check whether the data is there, and they never seem to have one...
    I'm really disappointed with apple. It's been two weeks and I haven't been able to find out whether the SSD card is holding my data. It can't take that long to do it in store... How can they sell a product and then wash their hands on the matter?
    Anyway, enough with the apple rant. I need to get this data urgently so I need to find out how I can get it out of the card. The SSD card and data might be fine so I don't want to take it to a data recovery centre and get charged loads.
    Thanks for your help.
    Olatz

    See this link for a 4870 card, best instructs for flashing for a noob like me. (last lowest price was $150 for a 1GB vRAM 4870 from TigerDirect).
    http://web.me.com/jacobcroft/4870Flash/4870Flash.html
    However, not every 4870 card will work with the ROM currently floating around out there. BEWARE!
    Link to recovering a bricked card:
    http://forums.techpowerup.com/showthread.php?t=64328

  • How Can we get the data from Non-SAP to SAP in WebDynpro

    Hi,
    I hope u understand my query, How can we get the data from Non-SAP to SAP thru WebDynpro Programming.
    Help out with the steps for getting the data or procedure.
    Regards,
    Mutyapu

    You can expose the APIs in the Non-SAP backend as Web Services, and consume them in SAP by creating an Enterprise Proxy. Then these can be called just like normal class methods from Web Dynpro.
    Regards,
    Nithya

  • How can i get the data from database & add them as a link

    Hi,
    how can i get a data from a database(DB2) and that data will be having a file so i should make them as a link.i tried it in jsp .
    <%
    Class.forName("COM.ibm.db2.jdbc.app.DB2Driver");
    Class.forName("COM.ibm.db2.jdbc.net.DB2Driver");     
    response.setContentType("text/html");
    Connection conn = null;
    conn = DriverManager.getConnection("jdbc:db2:spintran");
    Statement stmt = conn.createStatement();
    stmt.executeQuery("set current schema tut");
    ResultSet rs = stmt.executeQuery("select * from tutorial");     
    %>
    Type Of the Category : &nbsp&nbsp&nbsp
    <%
         while (rs.next())
         String desc = rs.getString(1);     
         out.println(desc);
    %>
         <A HREF = "<%=desc%>"><%=desc%> </A>
         <%
         %>
    but it is not working.how can i link.
    thank you.

    what is desc? is it the file name ? whats the data type of desc in db? INFILE?
    if desc is just the name of the file, then make sure that such a file exists in the proper folder.only then the link works..
    that is, if desc is 'a.jpg' then a.jpg should be existing in the same folder as your html is.

  • How can I get my data from a old iPad to a new iPad using iCloud and not iTunes

    How can I get my data from a old iPad to a new iPad using iCloud and not iTunes

    Restore from the iCloud backup - assuming that you were backing up to iCloud in the first place. If you weren't using iCloud for backup - then you are out of luck.
    If you were backing up to iCloud - you have to erase all contents on the iPad in Settings>General>Reset>Erase all content and settings - before you can restore from the iCloud backup.
    Read this article before you do anything else
    http://gigaom.com/apple/ios-101-set-up-and-restore-from-icloud-backup/

Maybe you are looking for