Re: [Gambas-user] Questions for RegExp class

2010-10-12 Thread user
Thanks, yes that was it. On Tue, 2010-10-12 at 21:34 +0200, EA7DFH wrote: > El 12/10/10 20:47, user escribió: > > Hi, > > > > i try to implement a regular expression with this code > > > > - > > DIM sRegEx AS Regexp > > > > sRegEx.Compile("\"") > >

Re: [Gambas-user] Questions for RegExp class

2010-10-12 Thread EA7DFH
El 12/10/10 20:47, user escribió: > Hi, > > i try to implement a regular expression with this code > > - > DIM sRegEx AS Regexp > > sRegEx.Compile("\"") > sRegEx.Exec(Global.txtUpdateOptions) > - > > but in li

[Gambas-user] Questions for RegExp class

2010-10-12 Thread user
Hi, i try to implement a regular expression with this code - DIM sRegEx AS Regexp sRegEx.Compile("\"") sRegEx.Exec(Global.txtUpdateOptions) - but in line of "compile" i get a NULL object. why? -