python - regex handling

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • bruce

    #1

    python - regex handling

    hi...

    does python provide regex handling similar to perl. can't find anything in
    the docs i've seen to indicate it does...

    -bruce

  • Marc 'BlackJack' Rintsch

    #2
    Re: python - regex handling

    In <mailman.7782.1 152030987.27775 .python-list@python.org >, bruce wrote:
    does python provide regex handling similar to perl. can't find anything in
    the docs i've seen to indicate it does...
    The `re` module handles Perl compatible regexes.

    Ciao,
    Marc 'BlackJack' Rintsch

    Comment

    • Ravi Teja

      #3
      Re: python - regex handling


      bruce wrote:
      hi...
      >
      does python provide regex handling similar to perl. can't find anything in
      the docs i've seen to indicate it does...
      >
      -bruce
      It helps to learn to search before asking for help.
      Typing the words - python regex (words from your post) into Google
      gives you plenty of results with the first link being the HOWTO. A
      better query - python "regular expressions" would give you even more.

      Comment

      Working...