Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #74110

Re: What is 're.M'?

From Mark Lawrence <breamoreboy@yahoo.co.uk>
Subject Re: What is 're.M'?
Date 2014-07-07 15:25 +0100
References <a35ecdcb-312a-4fb5-9822-209ea1823774@googlegroups.com>
Newsgroups comp.lang.python
Message-ID <mailman.11594.1404743126.18130.python-list@python.org> (permalink)

Show all headers | View raw


On 07/07/2014 15:08, rxjwg98@gmail.com wrote:
> Hi,
>
> I learn this short Python code from:
>
> http://www.tutorialspoint.com/python/python_reg_expressions.htm
>
> but I still do not decipher the meaning in its line, even after read its command
> explanation.
>
> It says that:
> re.M:
>
>   Makes $ match the end of a line (not just the end of the string) and makes ^
>   match the start of any line (not just the start of the string).
>
> More specific, what does 're.M' means?
>
> I have tried several other modification to the searchObj line, without clue yet.
>
> Could you explain re.M and the following two searchObj mechanisms?
>
> Thanks,
>
> import re
>
> line = "Cats are smarter than dogs";
>
> searchObj = re.search( r'(.*) (.*?) .*', line, re.M|re.I)
> # searchObj = re.search( r'(.*) (.*?) .*', line, re.M|re.I)
>
> if searchObj:
>     print "searchObj.group() : ", searchObj.group()
>     print "searchObj.group(1) : ", searchObj.group(1)
>     print "searchObj.group(2) : ", searchObj.group(2)
> else:
>     print "Nothing found!!"
>

The answer is on the first link that I sent you yesterday afternoon, 
that's 06/07/2014 15:25 BST.  Was the email not delivered or did you not 
bother to read it?

-- 
My fellow Pythonistas, ask not what our language can do for you, ask 
what you can do for our language.

Mark Lawrence

---
This email is free from viruses and malware because avast! Antivirus protection is active.
http://www.avast.com

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

What is 're.M'? rxjwg98@gmail.com - 2014-07-07 07:08 -0700
  Re: What is 're.M'? Skip Montanaro <skip@pobox.com> - 2014-07-07 09:15 -0500
  Re: What is 're.M'? Mark Lawrence <breamoreboy@yahoo.co.uk> - 2014-07-07 15:25 +0100
  Re: What is 're.M'? Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2014-07-07 14:46 +0000
    Re: What is 're.M'? rxjwg98@gmail.com - 2014-07-07 07:59 -0700
    Re: What is 're.M'? rxjwg98@gmail.com - 2014-07-07 08:16 -0700
    Re: What is 're.M'? rxjwg98@gmail.com - 2014-07-07 08:20 -0700
      Re: What is 're.M'? Mark Lawrence <breamoreboy@yahoo.co.uk> - 2014-07-07 17:39 +0100

csiph-web