It's not my code - it's from ConfigurationOfSeaside28.
-----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Lukas Renggli Sent: Friday, January 15, 2010 11:38 AM To: [email protected] Subject: Re: [Pharo-project] Regex regression? > A lot is happening, so I could be off here. In the 10496 web image, I > noted that there might be problems with the regex package. Now trying > to build a new image I hit a walkback over > > '*username*' asRegex There are quite a few unresolved bugs in the regexp engine, but this is definitely not one of them. The problem is that this is not a valid regular expression. See the wikipedia article for a general description (<http://en.wikipedia.org/wiki/Regular_expression>) or the documentation on the class side of RxParser for a specific description of the Smalltalk implementation. Your code looks more like a String>>#match: pattern. Lukas -- Lukas Renggli http://www.lukas-renggli.ch _______________________________________________ Pharo-project mailing list [email protected] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project _______________________________________________ Pharo-project mailing list [email protected] http://lists.gforge.inria.fr/cgi-bin/mailman/listinfo/pharo-project
