<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Character time to Numeric Time in SAS Programming</title>
    <link>https://communities.sas.com/t5/SAS-Programming/Character-time-to-Numeric-Time/m-p/600517#M173606</link>
    <description>&lt;P&gt;Awesome thank you so much!&lt;/P&gt;</description>
    <pubDate>Wed, 30 Oct 2019 19:46:33 GMT</pubDate>
    <dc:creator>hwangnyc</dc:creator>
    <dc:date>2019-10-30T19:46:33Z</dc:date>
    <item>
      <title>Character time to Numeric Time</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Character-time-to-Numeric-Time/m-p/600512#M173603</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a time variable that contains character values like this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;11:50 AM&lt;BR /&gt;02:35 PM&lt;BR /&gt;11:20 AM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd like to convert it to numeric so I can subtract and determine difference in time.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any suggestions would be greatly appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2019 19:30:49 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Character-time-to-Numeric-Time/m-p/600512#M173603</guid>
      <dc:creator>hwangnyc</dc:creator>
      <dc:date>2019-10-30T19:30:49Z</dc:date>
    </item>
    <item>
      <title>Re: Character time to Numeric Time</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Character-time-to-Numeric-Time/m-p/600513#M173604</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;data have;
input char_time $10.;
cards;
11:50 AM
02:35 PM
11:20 AM
;

data want;
set have;
num_time=input(char_time,time10.);
format num_time time5.;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 30 Oct 2019 19:37:22 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Character-time-to-Numeric-Time/m-p/600513#M173604</guid>
      <dc:creator>novinosrin</dc:creator>
      <dc:date>2019-10-30T19:37:22Z</dc:date>
    </item>
    <item>
      <title>Re: Character time to Numeric Time</title>
      <link>https://communities.sas.com/t5/SAS-Programming/Character-time-to-Numeric-Time/m-p/600517#M173606</link>
      <description>&lt;P&gt;Awesome thank you so much!&lt;/P&gt;</description>
      <pubDate>Wed, 30 Oct 2019 19:46:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Programming/Character-time-to-Numeric-Time/m-p/600517#M173606</guid>
      <dc:creator>hwangnyc</dc:creator>
      <dc:date>2019-10-30T19:46:33Z</dc:date>
    </item>
  </channel>
</rss>

