Re: [PD] un-routable output from [text get]

2017-02-07 Thread Dan Wilcox
ist-requ...@lists.iem.at wrote: > > From: IOhannes m zmoelnig mailto:zmoel...@iem.at>> > Subject: Re: [PD] un-routable output from [text get] > Date: February 7, 2017 at 1:40:40 AM MST > To: pd-list@lists.iem.at <mailto:pd-list@lists.iem.at> > > > On 2017-02

Re: [PD] un-routable output from [text get]

2017-02-07 Thread Lucas Cordiviola
. From: Pd-list on behalf of Liam Goodacre Sent: Tuesday, February 7, 2017 8:24 AM To: PD list Subject: Re: [PD] un-routable output from [text get] Thanks Roman and Antoine--looks like you both go the answer at the same time! This explanation makes sense, however I am using non ASCII

Re: [PD] un-routable output from [text get]

2017-02-07 Thread IOhannes m zmoelnig
On 2017-02-07 09:24, Liam Goodacre wrote: > This explanation makes sense, however I am using non ASCII characters in the > textfile (not the one attached, but the one I'm working on), so I guess that > I need the BOM to stay there. no. the BOM was just another useless invention. UTF-8 (unlike U

Re: [PD] un-routable output from [text get]

2017-02-07 Thread Lucas Cordiviola
behalf of Liam Goodacre Sent: Tuesday, February 7, 2017 8:24 AM To: PD list Subject: Re: [PD] un-routable output from [text get] Thanks Roman and Antoine--looks like you both go the answer at the same time! This explanation makes sense, however I am using non ASCII characters in the textfile

Re: [PD] un-routable output from [text get]

2017-02-07 Thread Liam Goodacre
ist Subject: Re: [PD] un-routable output from [text get] Your text file has been UTF8 encoded, and starts with a "byte order mark" (BOM) {0xEF 0xBB 0xBF}, which then is rejected by [route]. see https://en.wikipedia.org/wiki/Byte_order_mark#UTF-8 : Byte order mark - Wikipedia<h

Re: [PD] un-routable output from [text get]

2017-02-07 Thread Antoine Rousseau
Your text file has been UTF8 encoded, and starts with a "byte order mark" (BOM) {0xEF 0xBB 0xBF}, which then is rejected by [route]. see https://en.wikipedia.org/wiki/Byte_order_mark#UTF-8 : The UTF-8 representation of the BOM > is the byte sequence 0xEF,0xBB

Re: [PD] un-routable output from [text get]

2017-02-07 Thread Roman Haefeli
Hi Liam On Die, 2017-02-07 at 07:34 +, Liam Goodacre wrote: > I'm getting some strange behavior when reading a .txt file with [text > define], where the output from [text get] isn't routeable like a > normal list. See the attached file for an example. Do other users > experience the same thing