[Newbies] regular expressions

2008-09-28 Thread Mark Volkmann
Does the standard Squeak image contain a class for operating on regular expressions? --- Mark Volkmann ___ Beginners mailing list Beginners@lists.squeakfoundation.org http://lists.squeakfoundation.org/mailman/listinfo/beginners

Re: [Newbies] regular expressions

2008-09-28 Thread Norbert Hartl
On Sun, 2008-09-28 at 09:16 -0500, Mark Volkmann wrote: Does the standard Squeak image contain a class for operating on regular expressions? No, nothing beside Stringmatches: But you can load a regex package from squeaksource. You know squeaksource already? Norbert

Re: [Newbies] regular expressions

2008-09-28 Thread Rob Rothwell
And the standard dev image has VBRegex loaded already... Rob On Sun, Sep 28, 2008 at 10:31 AM, Norbert Hartl [EMAIL PROTECTED] wrote: On Sun, 2008-09-28 at 09:16 -0500, Mark Volkmann wrote: Does the standard Squeak image contain a class for operating on regular expressions? No, nothing

Re: [Newbies] regular expressions

2008-09-28 Thread Mark Volkmann
On Sep 28, 2008, at 9:31 AM, Norbert Hartl wrote: On Sun, 2008-09-28 at 09:16 -0500, Mark Volkmann wrote: Does the standard Squeak image contain a class for operating on regular expressions? No, nothing beside Stringmatches: But you can load a regex package from squeaksource. You know

Re: [Newbies] regular expressions

2008-09-28 Thread Mark Volkmann
Great! I'm using a Squeak-Dev image now and I've tried that out. Works well! What happens though when I distribute my code to someone that isn't using a dev image? Do I have to ask them to install VB-Regex separately? On Sep 28, 2008, at 9:38 AM, Rob Rothwell wrote: And the standard dev

Re: [Newbies] regular expressions

2008-09-28 Thread Mark Volkmann
On Sep 28, 2008, at 9:31 AM, Norbert Hartl wrote: On Sun, 2008-09-28 at 09:16 -0500, Mark Volkmann wrote: Does the standard Squeak image contain a class for operating on regular expressions? No, nothing beside Stringmatches: But you can load a regex package from squeaksource. You know

Re: [Newbies] regular expressions

2008-09-28 Thread Rob Rothwell
In the dev image, from the world menu, select open..., then Universe Browser (enhanced) (or basic if you prefer). Make sure up update the list from the network. Now others will have to chime in, because you can also select open... and then Squeak Map Package Loader. Much of the same material is

Re: [Newbies] regular expressions

2008-09-28 Thread Bert Freudenberg
Am 28.09.2008 um 07:52 schrieb Mark Volkmann: On Sep 28, 2008, at 9:31 AM, Norbert Hartl wrote: On Sun, 2008-09-28 at 09:16 -0500, Mark Volkmann wrote: Does the standard Squeak image contain a class for operating on regular expressions? No, nothing beside Stringmatches: But you can load a

Re: [Newbies] Regular expressions in Squeak?

2007-11-07 Thread Thor Bergquist
Thank you, Oscar! On Nov 6, 2007 12:58 AM, Oscar Nierstrasz [EMAIL PROTECTED] wrote: Hi Thor, You should use Vassili Bykov's regex package available from http://www.squeaksource.com/Regex.html Use the Monticello browser to load it. You can find documentation on the class side of the

Re: [Newbies] Regular expressions in Squeak?

2007-11-06 Thread Oscar Nierstrasz
Hi Thor, You should use Vassili Bykov's regex package available from http://www.squeaksource.com/Regex.html Use the Monticello browser to load it. You can find documentation on the class side of the RxParser class of the VB-Regex class category. If you need step-by-step instructions to