Re: [IronPython] re module

2006-04-11 Thread Dino Viehland
1B43134038) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andrzej Krzywda Sent: Tuesday, April 11, 2006 2:37 AM To: users@lists.ironpython.com Subject: [IronPython] re module Hi, There seems to be a different behaviour in the re module... Python: >

[IronPython] re module

2006-04-11 Thread Andrzej Krzywda
Hi, There seems to be a different behaviour in the re module... Python: >>> import re >>> re.match("a[bcd]*b", "abcbd").group(1) Traceback (most recent call last): File "", line 1, in ? IndexError: no such group Iron Python (Beta5): >>> import re >>> re.match("a[bcd]*b", "abcbd").group(1