<?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 determine string is ASCII or Unicode? in LabVIEW</title>
    <link>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3577878#M1001663</link>
    <description>&lt;P&gt;I agree with Bill said, there are just array of bytes as Unicode in LabVIEW.&lt;/P&gt;
&lt;P&gt;That's why I cannot determine first two bytes to recognize it.&lt;/P&gt;
&lt;P&gt;As Paul said, UTF-16 LE is used to present Unicode as even bytes are nulls.&lt;/P&gt;
&lt;P&gt;Basically, I can check even bytes and string length to find it's Unicode or not.&lt;/P&gt;
&lt;P&gt;However, the biggest problem is that my application including multi-language exchange will perform in English, Traditional Chinese, even Japanese.&lt;/P&gt;
&lt;P&gt;In pure English, even bytes method may be working.&lt;/P&gt;
&lt;P&gt;But, in Chinese or Japanese, every byte has value for Unicode strings.&lt;/P&gt;
&lt;P&gt;Each Chinese character will include two bytes.&lt;/P&gt;
&lt;P&gt;Since now, I got one additional problem for how to determine that Unicode string is English or Chinese.&lt;/P&gt;
&lt;P&gt;If there's way to define, I can use eve bytes method to figure out English parts, and maybe use first two bytes method for Chinese.&lt;/P&gt;</description>
    <pubDate>Thu, 02 Feb 2017 01:42:33 GMT</pubDate>
    <dc:creator>harry0725</dc:creator>
    <dc:date>2017-02-02T01:42:33Z</dc:date>
    <item>
      <title>How to determine string is ASCII or Unicode?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3572906#M1000179</link>
      <description>&lt;P&gt;As title, I'm trying to detect input string is ASCII or Unicode.&lt;/P&gt;
&lt;P&gt;I cannot figure it out. Pls kindly help if anyone.&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Sun, 22 Jan 2017 04:59:54 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3572906#M1000179</guid>
      <dc:creator>harry0725</dc:creator>
      <dc:date>2017-01-22T04:59:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine string is ASCII or Unicode?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3572908#M1000180</link>
      <description>&lt;P&gt;For plain Unicode vs ASCII, you can't really tell for certain (although you may be able to guess based on content).&lt;/P&gt;
&lt;P&gt;However if it's UTF-16 vs ASCII, the first two bytes will tell you: For UTF-16, the first two bytes are a byte-order-marker (either FF FE or FE FF).&lt;/P&gt;</description>
      <pubDate>Sun, 22 Jan 2017 05:44:08 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3572908#M1000180</guid>
      <dc:creator>paul_cardinale</dc:creator>
      <dc:date>2017-01-22T05:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine string is ASCII or Unicode?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3572914#M1000182</link>
      <description>&lt;P&gt;I'm not familiar with this, could you explain how to read first 2 bytes is FF FE or FE FF in LabVIEW?&lt;/P&gt;
&lt;P&gt;I tried to use "Read from Binary", but always get 0 0 as U8 type.&lt;/P&gt;</description>
      <pubDate>Sun, 22 Jan 2017 07:28:55 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3572914#M1000182</guid>
      <dc:creator>harry0725</dc:creator>
      <dc:date>2017-01-22T07:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine string is ASCII or Unicode?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3572958#M1000194</link>
      <description>&lt;P&gt;Why don't you attach&amp;nbsp;&lt;U&gt;both&lt;/U&gt; a sample data file and your&amp;nbsp;&lt;U&gt;code&lt;/U&gt;, not a picture, but the actual .VI file you are trying to use? &amp;nbsp;We'd be able to make suggestions that may work for you&amp;nbsp;&lt;U&gt;in your context&lt;/U&gt;, and also help you with specific misconceptions or mistakes you've made with your code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Bob Schor&lt;/P&gt;</description>
      <pubDate>Sun, 22 Jan 2017 15:24:58 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3572958#M1000194</guid>
      <dc:creator>Bob_Schor</dc:creator>
      <dc:date>2017-01-22T15:24:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine string is ASCII or Unicode?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3572988#M1000204</link>
      <description>&lt;P&gt;As already mentioned Unicode is a coding scheme that does not only contain a single possibility. There are at least 3 major variants called UTF-8, UTF-16 and UTF-32 with the number behind the UTF indicating the number of bits a single code point does occupy. Except for UTF-32 a&amp;nbsp;codepoint is not the same as a character.&lt;/P&gt;
&lt;P&gt;UTF-8 text that only contains ASCII-7 bit characters is indistinguishable from an ASCII text file unless it contains an optional (and not recommended) BOM header (&lt;SPAN&gt;0xEF,0xBB,0xBF)&lt;/SPAN&gt;, although that&amp;nbsp;name is really misleading since UTF-8 is a single byte coding scheme, so there is no byte order to indicate.&lt;/P&gt;
&lt;P&gt;UTF-16 can represent most characters of all the living languages around the world in a single code point but the higher characters (usually representing special characters or from artificial languages like Klingon) are represented with multiple&amp;nbsp;codepoints.&lt;/P&gt;
&lt;P&gt;UTF-32 can currently represent all defined characters in a single codepoint of 32 bit but the Unicode standard allows for future extensions to include new characters.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To make things more interesting the two multibyte encodings UTF-16 and UTF-32 can be in big endian or little endian byte order and that is where the BOM header as the first character point (mostly used in UTF-16 encoding) comes in handy.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Most Unix systems nowadays use UTF-8 as default text encoding scheme while Windows settled on UTF-16 little endian encoding both internal to the application and when exporting and importing text data. But on Unix, Unicode aware applications use normally internally the wide char representation which on Unix maps to 32 bit Unicode encoding. But when exporting it to and importing it from streams like files, network connections, etc it is usually converted to UTF-8.&lt;/P&gt;</description>
      <pubDate>Mon, 23 Jan 2017 00:32:02 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3572988#M1000204</guid>
      <dc:creator>rolfk</dc:creator>
      <dc:date>2017-01-23T00:32:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine string is ASCII or Unicode?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3574308#M1000547</link>
      <description>&lt;P&gt;Thanks for above reply.&lt;/P&gt;
&lt;P&gt;Let me explain my question clearly.&lt;/P&gt;
&lt;P&gt;I used Unicode support in my LabVIEW development as following metioned:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://forums.ni.com/t5/Reference-Design-Portal/LabVIEW-Unicode-Programming-Tools/ta-p/3493021" target="_blank"&gt;http://forums.ni.com/t5/Reference-Design-Portal/LabVIEW-Unicode-Programming-Tools/ta-p/3493021&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;In my application, I hope to programmatically determine the decode type of input String, which could be ASCII or Unicode.&lt;/P&gt;
&lt;P&gt;Following is an simple example for attached VI:&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://ip1.i.lithium.com/84778dba2945642327e7d9b9797dc02b356fb648/68747470733a2f2f6e692e6c69746869756d2e636f6d2f74352f696d6167652f736572766572706167652f696d6167652d69642f31393531313869433039463436463134363231383437362f696d6167652d73697a652f6f726967696e616c3f763d312e302670783d2d31" border="0" alt="Unicode.jpg" title="Unicode.jpg" /&gt;&lt;/P&gt;
&lt;P&gt;String "&lt;STRONG&gt;ASCII&lt;/STRONG&gt;" is original LabVIEW text, and "&lt;STRONG&gt;Unicode&lt;/STRONG&gt;" is Unicode string produced by method "Force Unicode Text" mentioned in above link.&lt;/P&gt;
&lt;P&gt;&lt;IMG src="http://forums.ni.com/legacyfs/online/10620_forceunicode.PNG" border="0" alt="" title="" /&gt;&lt;/P&gt;
&lt;P&gt;I'm not sure if this is possible or not, but I cannot figure out a nice solution.&lt;/P&gt;
&lt;P&gt;Pls kindly let me know hot to achieve this.&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jan 2017 14:43:34 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3574308#M1000547</guid>
      <dc:creator>harry0725</dc:creator>
      <dc:date>2017-01-25T14:43:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine string is ASCII or Unicode?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3574467#M1000592</link>
      <description>&lt;P&gt;Make sure that whatever supplies the string uses UTF-16 LE when it's Unicode, then just check the first two bytes of the string.&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jan 2017 18:21:34 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3574467#M1000592</guid>
      <dc:creator>paul_cardinale</dc:creator>
      <dc:date>2017-01-25T18:21:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine string is ASCII or Unicode?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3576835#M1001342</link>
      <description>&lt;P&gt;The input string is not supplied from Unicode file.&lt;/P&gt;
&lt;P&gt;It's just fixed constant string in LabVIEW.&lt;/P&gt;
&lt;P&gt;Most of time, there won't be first two bytes for Unicode string.&lt;/P&gt;</description>
      <pubDate>Tue, 31 Jan 2017 15:25:51 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3576835#M1001342</guid>
      <dc:creator>harry0725</dc:creator>
      <dc:date>2017-01-31T15:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine string is ASCII or Unicode?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3576882#M1001358</link>
      <description>&lt;P&gt;If the first two bytes are not present, then it isn't "truly" Unicode.&amp;nbsp; It's just an array of bytes waiting to be interpreted somehow.&amp;nbsp; I think you will have to interpret the bytes depending on where they came from.&lt;/P&gt;</description>
      <pubDate>Tue, 31 Jan 2017 16:07:03 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3576882#M1001358</guid>
      <dc:creator>billko</dc:creator>
      <dc:date>2017-01-31T16:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine string is ASCII or Unicode?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3576890#M1001361</link>
      <description>&lt;P&gt;In that case, there is no sure-fire way to tell the difference. &amp;nbsp;An ASCII string might contain any sequence of bytes, and a Unicode string also might contain any sequence of bytes, &amp;nbsp;If you display a string as ASCII, then as Unicode, you may find that one is readable (in some language) and the other looks like garbage; thus you could infer the coding. &amp;nbsp;However doing that programmatically is probably intractable. &amp;nbsp;Your best chance (and it's not a good one) is to assume that any Unicode string will contain some (maybe many) characters in the codepoint range 1-255. &amp;nbsp;If there are nulls in the even bytes, it's probably UTF-16 LE. &amp;nbsp;If there are nulls in the odd bytes, it's probably UTF-16 BE. &amp;nbsp;If there are no nulls, it's probably ASCII.&lt;/P&gt;</description>
      <pubDate>Tue, 31 Jan 2017 16:15:33 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3576890#M1001361</guid>
      <dc:creator>paul_cardinale</dc:creator>
      <dc:date>2017-01-31T16:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine string is ASCII or Unicode?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3576964#M1001385</link>
      <description>&lt;P&gt;Not really. &amp;nbsp;Unicode just defines the codepoints. &amp;nbsp;The presence of a Byte Order Marker (BOM), signifies a Unicode Transformation Format (UTF). &amp;nbsp;UTFs are methods of implementing Unicode encoding (i.e. they are wrappers for Unicode, not part of Unicode).&lt;/P&gt;</description>
      <pubDate>Tue, 31 Jan 2017 18:01:29 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3576964#M1001385</guid>
      <dc:creator>paul_cardinale</dc:creator>
      <dc:date>2017-01-31T18:01:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine string is ASCII or Unicode?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3577878#M1001663</link>
      <description>&lt;P&gt;I agree with Bill said, there are just array of bytes as Unicode in LabVIEW.&lt;/P&gt;
&lt;P&gt;That's why I cannot determine first two bytes to recognize it.&lt;/P&gt;
&lt;P&gt;As Paul said, UTF-16 LE is used to present Unicode as even bytes are nulls.&lt;/P&gt;
&lt;P&gt;Basically, I can check even bytes and string length to find it's Unicode or not.&lt;/P&gt;
&lt;P&gt;However, the biggest problem is that my application including multi-language exchange will perform in English, Traditional Chinese, even Japanese.&lt;/P&gt;
&lt;P&gt;In pure English, even bytes method may be working.&lt;/P&gt;
&lt;P&gt;But, in Chinese or Japanese, every byte has value for Unicode strings.&lt;/P&gt;
&lt;P&gt;Each Chinese character will include two bytes.&lt;/P&gt;
&lt;P&gt;Since now, I got one additional problem for how to determine that Unicode string is English or Chinese.&lt;/P&gt;
&lt;P&gt;If there's way to define, I can use eve bytes method to figure out English parts, and maybe use first two bytes method for Chinese.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 01:42:33 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3577878#M1001663</guid>
      <dc:creator>harry0725</dc:creator>
      <dc:date>2017-02-02T01:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine string is ASCII or Unicode?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3577882#M1001664</link>
      <description>&lt;P&gt;This whole thing sounds a bit backwards to me.&amp;nbsp; I think the language issue should be settled at install time.&amp;nbsp; You shouldn't be trying to determine it on the fly.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 02:20:38 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3577882#M1001664</guid>
      <dc:creator>billko</dc:creator>
      <dc:date>2017-02-02T02:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine string is ASCII or Unicode?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3577960#M1001687</link>
      <description>&lt;P&gt;Maybe I make some confuse.&lt;/P&gt;
&lt;P&gt;I'm writing a project which will include multi-language function for user to switch.&lt;/P&gt;
&lt;P&gt;And I use Unicode support in my LabVIEW development environment.&lt;/P&gt;
&lt;P&gt;So I cannot decide which language user is going to use.&lt;/P&gt;
&lt;P&gt;In other words, my program should be working for each kind of language.&lt;/P&gt;
&lt;P&gt;Of course I can make some additional terminal for my Unicode VIs to define data type and language format.&lt;/P&gt;
&lt;P&gt;But it will take lots of unnecessary case structures, make coding seems like hard code.&lt;/P&gt;
&lt;P&gt;I prefer not to use this kind of solution.&lt;/P&gt;
&lt;P&gt;That's why I'm trying to determine Unicode automatically.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 09:21:21 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3577960#M1001687</guid>
      <dc:creator>harry0725</dc:creator>
      <dc:date>2017-02-02T09:21:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine string is ASCII or Unicode?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3578018#M1001716</link>
      <description>&lt;P&gt;You could make identically formatted and named Unicode ini files with keys matching the names of controls you need to change.&amp;nbsp; The values will be Unicode representations of what you want to have there.&amp;nbsp; The ini files will be in different folders, one for each language.&amp;nbsp; Have the user select a language, go to that folder and pull the contents of the ini file into the captions, text or whatever for each control you need to modify.&amp;nbsp; Tedious.&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 11:56:05 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3578018#M1001716</guid>
      <dc:creator>billko</dc:creator>
      <dc:date>2017-02-02T11:56:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine string is ASCII or Unicode?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3578038#M1001724</link>
      <description>&lt;P&gt;So you have a user selection for a language and based on that select some language file to read in the strings and apply to the controls. Why would you then need to determine the type of string that is applied? I'm still not really understanding the problem here. The LabVIEW user interface will either be using the (unsupported) Unicode setting or MBCS, but never both. If you need to define multiple languages, and have determined that you can live with the many restrictions of Unicode support in LabVIEW when using the unsupported ini key, make all the necessary controls Unicode and be done with it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Since you know the language you want to apply, sort the strings accordingly, if it comes from language files do as bill has suggested by putting them in different files (or as I have done in the past to different columns in a tab seperated file and load them accordingly. Have these files correctly encoded, matching the controls encoding. Each file (or column) then defines a default encoding to use, where you can decide if you need to convert the string from the file into the Unicode UTF16LE that the LabVIEW controls need. Et voila!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There simply is no reliable way to detect if a random byte stream is an ASCII string, a Unicode string of any specific type or just some garbage. Sure you can try to parse the byte stream with the various unicode encodings and if you end up with an invalid codepoint, assume that it can't be that encoding, but that is not only unreliable, but also extremely performance intense. So don't do that!!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You know the language setting your application is in currently. Use that to determine if you need to do special handling rather than trying to guess from a random byte stream what it might me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 13:08:26 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3578038#M1001724</guid>
      <dc:creator>rolfk</dc:creator>
      <dc:date>2017-02-02T13:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine string is ASCII or Unicode?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3578112#M1001752</link>
      <description>&lt;P&gt;Did you take a look to this post:&lt;/P&gt;
&lt;P&gt;&lt;A href="http://forums.ni.com/t5/LabVIEW/Multilanguage-user-interface/m-p/2744846/highlight/true#M810815" target="_blank"&gt;http://forums.ni.com/t5/LabVIEW/Multilanguage-user-interface/m-p/2744846/highlight/true#M810815&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 15:07:48 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3578112#M1001752</guid>
      <dc:creator>J-M</dc:creator>
      <dc:date>2017-02-02T15:07:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to determine string is ASCII or Unicode?</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3578133#M1001764</link>
      <description>&lt;P&gt;To&amp;nbsp;&lt;SPAN class="login-bold"&gt;&lt;A id="link_36" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://ni.lithium.com/t5/user/viewprofilepage/user-id/6528" target="_self"&gt;rolfk&lt;/A&gt;:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="login-bold"&gt;Yes, you are totally correct about what I'm trying to do for my project. Which has multi-language selection for user to switch. I'll try to use your suggestion and see if any solution. Thanks for kind help.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="login-bold"&gt;To&amp;nbsp;&lt;SPAN class=""&gt;&lt;A id="link_41" class="lia-link-navigation lia-page-link lia-user-name-link" href="https://ni.lithium.com/t5/user/viewprofilepage/user-id/76370" target="_self"&gt;J-M&lt;/A&gt;:&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="login-bold"&gt;&lt;SPAN class=""&gt;I never read this thread before. Thought it didn't diretly solve my problem, it inspire me how to improve my Unicode system translation. Thanks for that! Sorry about that I can only set one best solution.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Feb 2017 15:42:02 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-to-determine-string-is-ASCII-or-Unicode/m-p/3578133#M1001764</guid>
      <dc:creator>harry0725</dc:creator>
      <dc:date>2017-02-02T15:42:02Z</dc:date>
    </item>
  </channel>
</rss>

