<?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 Using of CSV Files (Delimitter and Unicode) in Product Forum</title>
    <link>https://community.blueprism.com/t5/Product-Forum/Using-of-CSV-Files-Delimitter-and-Unicode/m-p/79902#M31716</link>
    <description>Hello Community,&lt;BR /&gt;yesterday I tried to process a CSV file. Therefore I use &lt;SPAN&gt;Utility - File Management - Get CSV Text As Collection. It works well so far, but two points strucked me:&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;SPAN&gt;I don't find a way to switch the delimitter. As far as I can see it is only the comma possible. Is there any other way to change the delimitter than swapping characters in the text? My problem is, when I download data from SAP that contains a comma, I choose another delimitter, e.g. tilde. Is there a way to process this data directly without transforming it first. I have already searched in the forum but unfortunately found no approach.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;To prepare the CSV I use a text editor which stores the file in UTF8 format with a BOM. As far as I can see it seems not possible to process the BOM with Get CSV Text As Collection. Can really only ASCII/ANSI files be processed? Or is it also possible to use Unicode directly?&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;BR /&gt;Thanks for answers, hints and tips.&lt;BR /&gt;Best regards&lt;BR /&gt;Stefan&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Stefan Schnell&lt;BR /&gt;Senior Systems Engineer at BWI GmbH&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
    <pubDate>Thu, 26 Nov 2020 08:09:00 GMT</pubDate>
    <dc:creator>StefanSchnell</dc:creator>
    <dc:date>2020-11-26T08:09:00Z</dc:date>
    <item>
      <title>Using of CSV Files (Delimitter and Unicode)</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Using-of-CSV-Files-Delimitter-and-Unicode/m-p/79902#M31716</link>
      <description>Hello Community,&lt;BR /&gt;yesterday I tried to process a CSV file. Therefore I use &lt;SPAN&gt;Utility - File Management - Get CSV Text As Collection. It works well so far, but two points strucked me:&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;
&lt;OL&gt;
&lt;LI&gt;&lt;SPAN&gt;I don't find a way to switch the delimitter. As far as I can see it is only the comma possible. Is there any other way to change the delimitter than swapping characters in the text? My problem is, when I download data from SAP that contains a comma, I choose another delimitter, e.g. tilde. Is there a way to process this data directly without transforming it first. I have already searched in the forum but unfortunately found no approach.&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;To prepare the CSV I use a text editor which stores the file in UTF8 format with a BOM. As far as I can see it seems not possible to process the BOM with Get CSV Text As Collection. Can really only ASCII/ANSI files be processed? Or is it also possible to use Unicode directly?&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/OL&gt;
&lt;BR /&gt;Thanks for answers, hints and tips.&lt;BR /&gt;Best regards&lt;BR /&gt;Stefan&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Stefan Schnell&lt;BR /&gt;Senior Systems Engineer at BWI GmbH&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 26 Nov 2020 08:09:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Using-of-CSV-Files-Delimitter-and-Unicode/m-p/79902#M31716</guid>
      <dc:creator>StefanSchnell</dc:creator>
      <dc:date>2020-11-26T08:09:00Z</dc:date>
    </item>
    <item>
      <title>RE: Using of CSV Files (Delimitter and Unicode)</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Using-of-CSV-Files-Delimitter-and-Unicode/m-p/79903#M31717</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;1. two possible ways:&lt;BR /&gt;a. &lt;BR /&gt;change registry HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Jet\4.0\Engines\Text&lt;BR /&gt;"Format" = "TabDelimited"&lt;BR /&gt;or&lt;BR /&gt;"Format" = "Delimited(~)"&lt;BR /&gt;&lt;BR /&gt;b. &lt;BR /&gt;have a "Schema.ini" file in the source folder with the data:&lt;BR /&gt;[your source directory]&lt;BR /&gt;Format=Delimited(~)&lt;/P&gt;
&lt;P&gt;See for more details on schema.ini files there:&lt;BR /&gt;&lt;A href="https://docs.microsoft.com/en-us/sql/odbc/microsoft/schema-ini-file-text-file-driver?redirectedfrom=MSDN&amp;amp;view=sql-server-ver15" target="test_blank"&gt;https://docs.microsoft.com/en-us/sql/odbc/microsoft/schema-ini-file-text-file-driver?redirectedfrom=MSDN&amp;amp;view=sql-server-ver15&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;2. try to add "CharacterSet=65001;" to the connection string in the code (make a copy of action "Get CSV Text As Collection" )&lt;BR /&gt;instead of&lt;BR /&gt;Dim cn As New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" &amp;amp; Folder &amp;amp; ";Extended Properties=""Text;HDR=" &amp;amp; HDRString &amp;amp; ";FMT=Delimited;""")&lt;BR /&gt;use&lt;BR /&gt;Dim cn As New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" &amp;amp; Folder &amp;amp; ";Extended Properties=""Text;HDR=" &amp;amp; HDRString &amp;amp; ";FMT=Delimited;CharacterSet=65001;""")&lt;BR /&gt;see if data are correctly taken as UTF-8&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Mindaugas Breskus&lt;BR /&gt;Software engineer&lt;BR /&gt;Swedbank&lt;BR /&gt;Europe/Vilnius&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Thu, 26 Nov 2020 14:48:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Using-of-CSV-Files-Delimitter-and-Unicode/m-p/79903#M31717</guid>
      <dc:creator>MindaugasBresku</dc:creator>
      <dc:date>2020-11-26T14:48:00Z</dc:date>
    </item>
    <item>
      <title>RE: Using of CSV Files (Delimitter and Unicode)</title>
      <link>https://community.blueprism.com/t5/Product-Forum/Using-of-CSV-Files-Delimitter-and-Unicode/m-p/79904#M31718</link>
      <description>&lt;A class="user-content-mention" data-sign="@" data-contactkey="a261ebb6-a79f-4528-9a6a-3e4c1beee170" data-tag-text="@Mindaugas Breskus" href="https://community.blueprism.com/network/profile?UserKey=a261ebb6-a79f-4528-9a6a-3e4c1beee170" data-itemmentionkey="bce7f968-542e-4c5b-8cdb-0d3b1f4c0389"&gt;@Mindaugas Breskus&lt;/A&gt; ​&lt;BR /&gt;&lt;BR /&gt;Hello Mindaugas,&lt;BR /&gt;thank you very much for your interesting answers.&lt;BR /&gt;I will try that.&lt;BR /&gt;Best regards&lt;BR /&gt;Stefan&lt;BR /&gt;&lt;BR /&gt;------------------------------&lt;BR /&gt;Stefan Schnell&lt;BR /&gt;Senior Systems Engineer at BWI GmbH&lt;BR /&gt;------------------------------&lt;BR /&gt;</description>
      <pubDate>Mon, 30 Nov 2020 08:44:00 GMT</pubDate>
      <guid>https://community.blueprism.com/t5/Product-Forum/Using-of-CSV-Files-Delimitter-and-Unicode/m-p/79904#M31718</guid>
      <dc:creator>StefanSchnell</dc:creator>
      <dc:date>2020-11-30T08:44:00Z</dc:date>
    </item>
  </channel>
</rss>

