Simon Brunning wrote:
> On 7/18/05, Jeremy <[EMAIL PROTECTED]> wrote:
>> I am using regular expressions and I would like to use both
>> re.IGNORECASE and re.VERBOSE options. I want to do something like the
>> following (which doesn't work):
>>
>> matsearch = r'''^\ {0,4}([mM]\d+) '''
>> MatSearch
Jeremy wrote:
> I am using regular expressions and I would like to use both
> re.IGNORECASE and re.VERBOSE options. I want to do something like the
> following (which doesn't work):
>
> matsearch = r'''^\ {0,4}([mM]\d+) '''
> MatSearch = re.compile(matsearch, re.VERBOSE, re.IGNORECASE)
>
> Does
On 7/18/05, Jeremy <[EMAIL PROTECTED]> wrote:
> I am using regular expressions and I would like to use both
> re.IGNORECASE and re.VERBOSE options. I want to do something like the
> following (which doesn't work):
>
> matsearch = r'''^\ {0,4}([mM]\d+) '''
> MatSearch = re.compile(matsearch, re.VE
On 7/18/05, Jeremy <[EMAIL PROTECTED]> wrote:
> I am using regular expressions and I would like to use both
> re.IGNORECASE and re.VERBOSE options. I want to do something like the
> following (which doesn't work):
>
> matsearch = r'''^\ {0,4}([mM]\d+) '''
> MatSearch = re.compile(matsearch, re.VE