[Gambas-user] New behaviour for the Split() instruction

2014-11-29 Thread Benoît Minisini
I'm currently a new behaviour for the Split() instruction, that is normally backward-compatible. Split(abcd,;,\\;) splits the abcd string with the ; character, and uses the backslash character for escaping it. This behaviour is enabled when the escape string (the third argument) has

Re: [Gambas-user] New behaviour for the Split() instruction

2014-11-29 Thread Benoît Minisini
Le 29/11/2014 22:13, Benoît Minisini a écrit : I'm currently a new behaviour for the Split() instruction, that is . /|\ defining --' normally backward-compatible. Split(abcd,;,\\;) splits the abcd string with the ; character, and uses the backslash

Re: [Gambas-user] New behaviour for the Split() instruction

2014-11-29 Thread Tobias Boege
On Sat, 29 Nov 2014, Beno??t Minisini wrote: I'm currently a new behaviour for the Split() instruction, that is normally backward-compatible. Split(abcd,;,\\;) splits the abcd string with the ; character, and uses the backslash character for escaping it. This behaviour is

Re: [Gambas-user] New behaviour for the Split() instruction

2014-11-29 Thread Benoît Minisini
Le 29/11/2014 22:22, Tobias Boege a écrit : On Sat, 29 Nov 2014, Beno??t Minisini wrote: I'm currently a new behaviour for the Split() instruction, that is normally backward-compatible. Split(abcd,;,\\;) splits the abcd string with the ; character, and uses the backslash character for

Re: [Gambas-user] New behaviour for the Split() instruction

2014-11-29 Thread B Bruen
On Sat, 29 Nov 2014 22:22:23 +0100 Tobias Boege tabo...@gmail.com wrote: On Sat, 29 Nov 2014, Beno??t Minisini wrote: I'm currently a new behaviour for the Split() instruction, that is normally backward-compatible. Split(abcd,;,\\;) splits the abcd string with the ; character,

Re: [Gambas-user] New behaviour for the Split() instruction

2014-11-29 Thread Benoît Minisini
Le 29/11/2014 22:53, B Bruen a écrit : Yes, I would like to see an example of before and after as well. I think I had a need for exactly this the other day. I wanted to split a comma delimited list except where the comma is immediately followed by a space. Will this change help that?