<?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: How to convert binary ms word doc into text so I can splunk it? in Splunk Search</title>
    <link>https://community.splunk.com/t5/Splunk-Search/How-to-convert-binary-ms-word-doc-into-text-so-I-can-splunk-it/m-p/53716#M13065</link>
    <description>&lt;P&gt;What about exporting to RTF ?&lt;/P&gt;</description>
    <pubDate>Fri, 02 Sep 2011 19:02:36 GMT</pubDate>
    <dc:creator>yannK</dc:creator>
    <dc:date>2011-09-02T19:02:36Z</dc:date>
    <item>
      <title>How to convert binary ms word doc into text so I can splunk it?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-convert-binary-ms-word-doc-into-text-so-I-can-splunk-it/m-p/53714#M13063</link>
      <description>&lt;P&gt;I currently have some medical records in doc form that are binary text created in ms office word.&lt;/P&gt;

&lt;P&gt;I want to create dates, times, doctor, patient visits into charts for the doctors within a dashboard in Splunk.&lt;/P&gt;

&lt;P&gt;Is there a way that I can convert my binary document into a text based document so I can splunk it?&lt;/P&gt;

&lt;P&gt;Is this possible?&lt;/P&gt;</description>
      <pubDate>Thu, 04 Aug 2011 20:28:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-convert-binary-ms-word-doc-into-text-so-I-can-splunk-it/m-p/53714#M13063</guid>
      <dc:creator>maverick</dc:creator>
      <dc:date>2011-08-04T20:28:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert binary ms word doc into text so I can splunk it?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-convert-binary-ms-word-doc-into-text-so-I-can-splunk-it/m-p/53715#M13064</link>
      <description>&lt;P&gt;Not sure if this is what you are asking for, but it appears to me to be worth trying:&lt;/P&gt;

&lt;P&gt;&lt;A href="http://www.cometdocs.com/"&gt;http://www.cometdocs.com/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Aug 2011 20:29:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-convert-binary-ms-word-doc-into-text-so-I-can-splunk-it/m-p/53715#M13064</guid>
      <dc:creator>maverick</dc:creator>
      <dc:date>2011-08-04T20:29:06Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert binary ms word doc into text so I can splunk it?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-convert-binary-ms-word-doc-into-text-so-I-can-splunk-it/m-p/53716#M13065</link>
      <description>&lt;P&gt;What about exporting to RTF ?&lt;/P&gt;</description>
      <pubDate>Fri, 02 Sep 2011 19:02:36 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-convert-binary-ms-word-doc-into-text-so-I-can-splunk-it/m-p/53716#M13065</guid>
      <dc:creator>yannK</dc:creator>
      <dc:date>2011-09-02T19:02:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to convert binary ms word doc into text so I can splunk it?</title>
      <link>https://community.splunk.com/t5/Splunk-Search/How-to-convert-binary-ms-word-doc-into-text-so-I-can-splunk-it/m-p/53717#M13066</link>
      <description>&lt;P&gt;It would be trivial to write a Microsoft VBA macro that simply re-saved a file with the same name, but in Unicode text format with a .txt extension.  In fact,  here it is&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;Public Sub SaveAsUnicodeFile()
    Dim newName As String
    Dim pos As Integer  
    pos = InStrRev(ActiveDocument.Name, ".")
    If pos &amp;gt; 0 Then
        newName = Left$(ActiveDocument.Name, pos - 1)
    Else
        newName = ActiveDocument.Name
    End If
    newName = ActiveDocument.Path &amp;amp; "\" &amp;amp; newName &amp;amp; ".txt"  
    Call ActiveDocument.SaveAs(FileName:=newName, FileFormat:=wdFormatUnicodeText)
End Sub
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;This version of the macro re-saves the active document, but you could change it so that the name of the file to save was supplied as an argument...&lt;/P&gt;</description>
      <pubDate>Fri, 02 Sep 2011 22:12:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Splunk-Search/How-to-convert-binary-ms-word-doc-into-text-so-I-can-splunk-it/m-p/53717#M13066</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2011-09-02T22:12:22Z</dc:date>
    </item>
  </channel>
</rss>

