<?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 make array of string from different string in LabVIEW</title>
    <link>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3587296#M1004635</link>
    <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.ni.com/t5/user/viewprofilepage/user-id/571360"&gt;@MaxiMuz1979&lt;/a&gt; wrote:&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;[...]
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;That means that your string array keeps growing with repetitive VI calls until you unload the VI (most likely shut down LV) or your systems runs out of memory&lt;/BLOCKQUOTE&gt;
&lt;P&gt;How can the array string keeps growing if every time at the begin it has null length ?&lt;/P&gt;
&lt;P&gt;[...]&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The array in the shift register has a length of 0 only before the first call. Once the VI finished running the first time, the array in the shift register has a length of four elements. This array is NOT RESET to a length of zero elements because you DO NOT RE-INIT the shift register with an empty array.&lt;/P&gt;
&lt;P&gt;Furthermore, you use "Insert into array" and use the iterator to insert elements. That means for the second run of the VI:&lt;/P&gt;
&lt;P&gt;- The shift register contains a string array with four elements&lt;/P&gt;
&lt;P&gt;- You start to PREPEND new elements&lt;/P&gt;
&lt;P&gt;That means, runtime performance sucks and you have a "memory leak- like" behavior of growing memory consumption. However, it is not a leak, it is what you tell LV to do!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.ni.com/t5/user/viewprofilepage/user-id/571360"&gt;@MaxiMuz1979&lt;/a&gt; wrote:&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;[...]&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;
&lt;P&gt;c) Add function is Rube-Goldberg. Please get rid of it&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Do you mean the method of creating array ?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;No, i mean the "Add" function (the yellowish triangle with '+' inside). It serves no purpose as you add 0 to the iterator. So it is a complete waste of block diagram space. Depending on the LV version, it is possible that the compiler removes that unnecessary code, but it could also bloat the execution code of the VI. Please remove it (with the constant '0').&lt;/P&gt;</description>
    <pubDate>Wed, 22 Feb 2017 08:07:02 GMT</pubDate>
    <dc:creator>Norbert_B</dc:creator>
    <dc:date>2017-02-22T08:07:02Z</dc:date>
    <item>
      <title>How make array of string from different string</title>
      <link>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3586815#M1004473</link>
      <description>&lt;P&gt;Hi everyone !&lt;/P&gt;
&lt;P&gt;I need get array of strings, which consist from defined (selected defined algorithms) strings. This string coming from "Pick Line" and&amp;nbsp; I tried do this with help function "Insert Into Array Function " .&amp;nbsp; But on the output I am&amp;nbsp; getting the array with only 1 member. &lt;/P&gt;
&lt;P&gt;Why did such occur ?&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://forums.ni.com/t5/image/serverpage/image-id/196798iD6F5D61BB2347664/image-size/original?v=1.0&amp;amp;px=-1" border="0" alt="Безымянный.jpg" title="Безымянный.jpg" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2017 14:19:33 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3586815#M1004473</guid>
      <dc:creator>MaxiMuz1979</dc:creator>
      <dc:date>2017-02-21T14:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: How make array of string from different string</title>
      <link>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3586827#M1004476</link>
      <description>&lt;P&gt;Your VI needs improvement (quite some) in order to be readable.&lt;/P&gt;
&lt;P&gt;Besides that, your issue has to do with a missing shift register for the string array.....&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2017 14:29:47 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3586827#M1004476</guid>
      <dc:creator>Norbert_B</dc:creator>
      <dc:date>2017-02-21T14:29:47Z</dc:date>
    </item>
    <item>
      <title>Re: How make array of string from different string</title>
      <link>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3586830#M1004479</link>
      <description>&lt;P&gt;Hi Muz,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;FONT color="#FF0000"&gt;Why did such occur ?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;When you insert a string into an empty string array you get an array with just one element.&lt;/P&gt;
&lt;P&gt;Seems reasonable to me…&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2017 14:32:27 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3586830#M1004479</guid>
      <dc:creator>GerdW</dc:creator>
      <dc:date>2017-02-21T14:32:27Z</dc:date>
    </item>
    <item>
      <title>Re: How make array of string from different string</title>
      <link>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3586849#M1004483</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;
&lt;P&gt;When you insert a string into an empty string array you get an array with just one element.&lt;/P&gt;
&lt;P&gt;Seems reasonable to me…&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I solved this problem. I can't get used to LabView. I must to looping the output functional block on the input through buffer.&lt;/P&gt;
&lt;P&gt;Look like this.&lt;IMG src="https://forums.ni.com/t5/image/serverpage/image-id/196805iDC973338FC29628D/image-size/original?v=1.0&amp;amp;px=-1" border="0" alt="Безымянный.jpg" title="Безымянный.jpg" /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2017 15:03:35 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3586849#M1004483</guid>
      <dc:creator>MaxiMuz1979</dc:creator>
      <dc:date>2017-02-21T15:03:35Z</dc:date>
    </item>
    <item>
      <title>Re: How make array of string from different string</title>
      <link>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3586856#M1004486</link>
      <description>&lt;P&gt;If you are always putting the new element at either the beginning or end of an array, then you should just use Build Array.&amp;nbsp; Insert into Array should only be used when you might be "inserting" new elements in the middle of an array.&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2017 15:07:37 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3586856#M1004486</guid>
      <dc:creator>RavensFan</dc:creator>
      <dc:date>2017-02-21T15:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: How make array of string from different string</title>
      <link>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3586864#M1004489</link>
      <description>&lt;P&gt;And you should (most probably) also initialize your shift register…&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2017 15:11:00 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3586864#M1004489</guid>
      <dc:creator>GerdW</dc:creator>
      <dc:date>2017-02-21T15:11:00Z</dc:date>
    </item>
    <item>
      <title>Re: How make array of string from different string</title>
      <link>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3586869#M1004492</link>
      <description>&lt;P&gt;Your VI still requires a lot of rework to be in proper shape. There are couple of code segments which can create severe issues on the long term:&lt;/P&gt;
&lt;P&gt;a) Uninitialized shift register will keep the data from the last VI execution (as long as the VI stays in memory!). That means that your string array keeps growing with repetitive VI calls until you unload the VI (most likely shut down LV) or your systems runs out of memory&lt;/P&gt;
&lt;P&gt;b) A for loop already has a method of limiting the number of iterations. Your conditional terminal makes no sense if the VI connected to N already passes '4'&lt;/P&gt;
&lt;P&gt;c) Add function is Rube-Goldberg. Please get rid of it&lt;/P&gt;
&lt;P&gt;d) 'sub-optimal' wire routing leads to difficult readable code. If more code is added, this adds up to a real pain&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2017 15:13:51 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3586869#M1004492</guid>
      <dc:creator>Norbert_B</dc:creator>
      <dc:date>2017-02-21T15:13:51Z</dc:date>
    </item>
    <item>
      <title>Re: How make array of string from different string</title>
      <link>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3586909#M1004508</link>
      <description>&lt;P&gt;One of the biggest hurdles that non-LabVIEW people face when starting is dealing with dataflow instead of variables. &amp;nbsp;In other languages, you would declare an array with the desired number of elements, then populate them sequentially within the for loop. &amp;nbsp;Here,&amp;nbsp;"Out Array" is not a variable which is appended at each iteration of the loop, but an indicator on the front panel which is "re-assigned" at each iteration of your loop.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you do not need "Out Array" updated at each iteration of the loop, you could use an auto-indexing output tunnel (instead of the shift register) and place "out array" outside the for loop.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2017 16:10:20 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3586909#M1004508</guid>
      <dc:creator>proland1121</dc:creator>
      <dc:date>2017-02-21T16:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: How make array of string from different string</title>
      <link>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3587002#M1004535</link>
      <description>&lt;P&gt;My first thought is "where is the data used to pick line?"&amp;nbsp; If that is a giant string that comes in before the loop, you could just use Spreadsheet String To Array to turn the giant string into an array of strings (an element for each line) and then use an Auto-indexing Tunnel to loop through the lines.&amp;nbsp; It would greatly simplify your code (no need to wire the N or use the conditional terminal, eliminate the Pick Line and the need to build the array inside of the loop, etc.)&lt;/P&gt;</description>
      <pubDate>Tue, 21 Feb 2017 17:52:30 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3587002#M1004535</guid>
      <dc:creator>crossrulz</dc:creator>
      <dc:date>2017-02-21T17:52:30Z</dc:date>
    </item>
    <item>
      <title>Re: How make array of string from different string</title>
      <link>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3587274#M1004626</link>
      <description>&lt;BLOCKQUOTE&gt;a) Uninitialized shift register will keep the data from the last VI execution (as long as the VI stays in memory!).&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I agree with it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;That means that your string array keeps growing with repetitive VI calls until you unload the VI (most likely shut down LV) or your systems runs out of memory&lt;/BLOCKQUOTE&gt;
&lt;P&gt;How can the array string keeps growing if every time at the begin it has null length ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;b) A for loop already has a method of limiting the number of iterations. Your conditional terminal makes no sense if the VI connected to N already passes '4'&lt;/BLOCKQUOTE&gt;
&lt;P&gt;-&amp;nbsp; I know! It will be changing&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;
&lt;P&gt;c) Add function is Rube-Goldberg. Please get rid of it&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Do you mean the method of creating array ?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Feb 2017 07:26:29 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3587274#M1004626</guid>
      <dc:creator>MaxiMuz1979</dc:creator>
      <dc:date>2017-02-22T07:26:29Z</dc:date>
    </item>
    <item>
      <title>Re: How make array of string from different string</title>
      <link>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3587296#M1004635</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.ni.com/t5/user/viewprofilepage/user-id/571360"&gt;@MaxiMuz1979&lt;/a&gt; wrote:&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;[...]
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;That means that your string array keeps growing with repetitive VI calls until you unload the VI (most likely shut down LV) or your systems runs out of memory&lt;/BLOCKQUOTE&gt;
&lt;P&gt;How can the array string keeps growing if every time at the begin it has null length ?&lt;/P&gt;
&lt;P&gt;[...]&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The array in the shift register has a length of 0 only before the first call. Once the VI finished running the first time, the array in the shift register has a length of four elements. This array is NOT RESET to a length of zero elements because you DO NOT RE-INIT the shift register with an empty array.&lt;/P&gt;
&lt;P&gt;Furthermore, you use "Insert into array" and use the iterator to insert elements. That means for the second run of the VI:&lt;/P&gt;
&lt;P&gt;- The shift register contains a string array with four elements&lt;/P&gt;
&lt;P&gt;- You start to PREPEND new elements&lt;/P&gt;
&lt;P&gt;That means, runtime performance sucks and you have a "memory leak- like" behavior of growing memory consumption. However, it is not a leak, it is what you tell LV to do!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.ni.com/t5/user/viewprofilepage/user-id/571360"&gt;@MaxiMuz1979&lt;/a&gt; wrote:&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;[...]&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;
&lt;P&gt;c) Add function is Rube-Goldberg. Please get rid of it&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Do you mean the method of creating array ?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;No, i mean the "Add" function (the yellowish triangle with '+' inside). It serves no purpose as you add 0 to the iterator. So it is a complete waste of block diagram space. Depending on the LV version, it is possible that the compiler removes that unnecessary code, but it could also bloat the execution code of the VI. Please remove it (with the constant '0').&lt;/P&gt;</description>
      <pubDate>Wed, 22 Feb 2017 08:07:02 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3587296#M1004635</guid>
      <dc:creator>Norbert_B</dc:creator>
      <dc:date>2017-02-22T08:07:02Z</dc:date>
    </item>
    <item>
      <title>Re: How make array of string from different string</title>
      <link>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3587299#M1004637</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.ni.com/t5/user/viewprofilepage/user-id/75897"&gt;@crossrulz&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;My first thought is "where is the data used to pick line?"&amp;nbsp; If that is a giant string that comes in before the loop, you could just use Spreadsheet String To Array to turn the giant string into an array of strings (an element for each line) and then use an Auto-indexing Tunnel to loop through the lines. &lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I need to use array of strings&amp;nbsp; in the loop.&lt;/P&gt;</description>
      <pubDate>Wed, 22 Feb 2017 08:08:20 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3587299#M1004637</guid>
      <dc:creator>MaxiMuz1979</dc:creator>
      <dc:date>2017-02-22T08:08:20Z</dc:date>
    </item>
    <item>
      <title>Re: How make array of string from different string</title>
      <link>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3587368#M1004660</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.ni.com/t5/user/viewprofilepage/user-id/30013"&gt;@Norbert_B&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.ni.com/t5/user/viewprofilepage/user-id/571360"&gt;@MaxiMuz1979&lt;/a&gt; wrote:&lt;/BLOCKQUOTE&gt;
&lt;/BLOCKQUOTE&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;Furthermore, you use "Insert into array" and use the iterator to insert elements. That means for the second run of the VI:&lt;/P&gt;
&lt;P&gt;- The shift register contains a string array with four elements&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;really is the shift register contain all array ? I think, the shift register can contains only one member such as one string. Isn't it ?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Feb 2017 10:53:52 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3587368#M1004660</guid>
      <dc:creator>MaxiMuz1979</dc:creator>
      <dc:date>2017-02-22T10:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: How make array of string from different string</title>
      <link>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3587388#M1004664</link>
      <description>&lt;P&gt;You have a single 1D array of strings in the shift register. So yes, the following is true as you state:&lt;/P&gt;
&lt;P&gt;- There array has only elements of one specific data type (fundamental property of arrays in all programming languages)&lt;/P&gt;
&lt;P&gt;- The array has only one dimension&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;However, that does not define/restrict how many elements are in the array. In your code, the array is not reinitialized to be empty for consecutive VI executions. That means that each call to VI adds new elements!&lt;/P&gt;</description>
      <pubDate>Wed, 22 Feb 2017 11:54:26 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3587388#M1004664</guid>
      <dc:creator>Norbert_B</dc:creator>
      <dc:date>2017-02-22T11:54:26Z</dc:date>
    </item>
    <item>
      <title>Re: How make array of string from different string</title>
      <link>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3587391#M1004666</link>
      <description>&lt;P&gt;Hi Muz,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;FONT color="#FF0000"&gt;I think, the shift register can contains only one member such as one string. Isn't it ?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;It isn't! A shift register can take any datatype you like…&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you should take the free beginner courses offered by NI!&lt;/P&gt;
&lt;P&gt;And I suggest you create some simple VIs to "play around" and "try on your own": such things really help to understand how certain parts of LabVIEW work…&lt;/P&gt;</description>
      <pubDate>Wed, 22 Feb 2017 11:56:35 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3587391#M1004666</guid>
      <dc:creator>GerdW</dc:creator>
      <dc:date>2017-02-22T11:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: How make array of string from different string</title>
      <link>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3587431#M1004675</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.ni.com/t5/user/viewprofilepage/user-id/16916"&gt;@GerdW&lt;/a&gt; wrote:&lt;BR /&gt;&lt;BR /&gt;
&lt;P&gt;I think you should take the free beginner courses offered by NI!&lt;/P&gt;
&lt;P&gt;And I suggest you create some simple VIs to "play around" and "try on your own": such things really help to understand how certain parts of LabVIEW work…&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;What course do you mean ?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Feb 2017 13:21:55 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3587431#M1004675</guid>
      <dc:creator>MaxiMuz1979</dc:creator>
      <dc:date>2017-02-22T13:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: How make array of string from different string</title>
      <link>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3587441#M1004678</link>
      <description>&lt;P&gt;Hi Muz,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;did you notice the header on top of the LabVIEW forum?&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://forums.ni.com/t5/image/serverpage/image-id/196891i20C9C7B5EA244EBB/image-size/original?v=1.0&amp;amp;px=-1" border="0" alt="check.png" title="check.png" /&gt;&lt;/P&gt;
&lt;P&gt;It says "Getting started…"&lt;/P&gt;</description>
      <pubDate>Wed, 22 Feb 2017 13:42:13 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3587441#M1004678</guid>
      <dc:creator>GerdW</dc:creator>
      <dc:date>2017-02-22T13:42:13Z</dc:date>
    </item>
    <item>
      <title>Re: How make array of string from different string</title>
      <link>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3589306#M1005376</link>
      <description>&lt;P&gt;Yes, I saw&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2017 09:13:40 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/How-make-array-of-string-from-different-string/m-p/3589306#M1005376</guid>
      <dc:creator>MaxiMuz1979</dc:creator>
      <dc:date>2017-02-27T09:13:40Z</dc:date>
    </item>
  </channel>
</rss>

