Re: [Gambas-user] Split: misleading Wiki

2017-05-23 Thread Matti
Very good explanation, thank you. Am 22.05.2017 um 23:33 schrieb d4t4f...@gmail.com: > Matti > > Your string has 3 substrings when split with SPLIT (STRING, "#"): > > Index 0: "Hello" > Index 1: "" > Index 2: "12345" > > It is documented that separators are single characters, not strings; you can

Re: [Gambas-user] Split: misleading Wiki

2017-05-23 Thread Gianluigi
A variant of the previous suggestions, to ignored (5) voids :-) Public Sub Main() Dim ss As String[] Dim s As String ss = Split("hello#12345", "#") For Each s In ss If Not IsNull(s) Then Print s; Next End Regards Gianluigi 2017-05-23 8:38 GMT+02:00 Fabien Bodard : > A=Split

Re: [Gambas-user] Split: misleading Wiki

2017-05-22 Thread Fabien Bodard
A=Split (replace ("##yyy##1234","##",chr (27)),chr (27)) Or do not use double characters as separator . Le 22 mai 2017 23:35, a écrit : > Matti > > Your string has 3 substrings when split with SPLIT (STRING, "#"): > > Index 0: "Hello" > Index 1: "" > Index 2: "12345" > > It is documented

Re: [Gambas-user] Split: misleading Wiki

2017-05-22 Thread d4t4full
Matti Your string has 3 substrings when split with SPLIT (STRING, "#"): Index 0: "Hello" Index 1: "" Index 2: "12345" It is documented that separators are single characters, not strings; you can specify a string because any of its individual characters may be used as separator. If you also sp

Re: [Gambas-user] Split: misleading Wiki

2017-05-22 Thread Matti
Ok, thank you, Tobi. I'll have to start thinking again (but not tonight anymore). Matti Am 22.05.2017 um 22:17 schrieb Tobias Boege: > On Mon, 22 May 2017, Matti wrote: >> If I have a string sStr="hello##12345" and want to split it: >> >> Dim aSplit as String[] >> aSplit = Split(sStr, "##") >> Pri

Re: [Gambas-user] Split: misleading Wiki

2017-05-22 Thread Tobias Boege
On Mon, 22 May 2017, Matti wrote: > If I have a string sStr="hello##12345" and want to split it: > > Dim aSplit as String[] > aSplit = Split(sStr, "##") > Print aSplit[0], aSplit[1] > > Returns always only "hello". Maybe "12345" is excluded because being an > integer? > It is not an integer in

[Gambas-user] Split: misleading Wiki

2017-05-22 Thread Matti
If I have a string sStr="hello##12345" and want to split it: Dim aSplit as String[] aSplit = Split(sStr, "##") Print aSplit[0], aSplit[1] Returns always only "hello". Maybe "12345" is excluded because being an integer? Now the Wiki says "StringArray = Split ( String [ , Separators , Escape , Ig

Re: [Gambas-user] Split a line with double spaces

2010-10-15 Thread user
nice idea... Thanks. On Fri, 2010-10-15 at 15:18 +0200, Stefano Palmeri wrote: > Il venerdì 15 ottobre 2010 13:26:13 user ha scritto: > > Hi to all, > > > > i have a string which contains two spaces in a row. > > > > i use split function to split this string in 2 parts with separator the > > 2 sp

Re: [Gambas-user] Split a line with double spaces

2010-10-15 Thread Stefano Palmeri
Il venerdì 15 ottobre 2010 13:26:13 user ha scritto: > Hi to all, > > i have a string which contains two spaces in a row. > > i use split function to split this string in 2 parts with separator the > 2 spaces. > > sOneLine="/mnt/store/RealViruses/minitest/Trojan-Spy.Win32.Zbot.hzu > Virus found Win

[Gambas-user] Split a line with double spaces

2010-10-15 Thread user
Hi to all, i have a string which contains two spaces in a row. i use split function to split this string in 2 parts with separator the 2 spaces. sOneLine="/mnt/store/RealViruses/minitest/Trojan-Spy.Win32.Zbot.hzu Virus found Win32/Heur" sSplitLine = Split(sOneLine, (" ") Normally i want to ha

Re: [Gambas-user] Split

2009-11-22 Thread Charlie Reinl
Am Sonntag, den 22.11.2009, 01:03 -0800 schrieb yuhej: > Hello, > > The Split function baheves strange for me. > I receive data fon an equipment throu RS232 and I need to extract the > information from a string. > > The data groups are separated by 4 chr(10) character (originally it was 2 > CrLf

[Gambas-user] Split

2009-11-22 Thread yuhej
Hello, The Split function baheves strange for me. I receive data fon an equipment throu RS232 and I need to extract the information from a string. The data groups are separated by 4 chr(10) character (originally it was 2 CrLf but when reading in Gambas it became 4 chr(10) - this is also strange)