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