1. Home
  2. Computing & Technology
  3. Python

Python Regular Expression Examples: Curly Braces With Question Marks

From , former About.com Guide

Definition:
>>> import re
>>> y = re.split(':/{1,3}', 'ftp://python.about.com')
>>> print y
['ftp', 'python.about.com']

>>> y = re.split(':/{1,3}', 'ftp:/python.about.com')
>>> print y
['ftp', 'python.about.com']

>>> y = re.split(':/{1,3}', 'ftp:///python.about.com')
>>> print y
['ftp', 'python.about.com']

>>> y = re.split(':/{1,3}?', 'ftp:///python.about.com')
>>> print y
['ftp', '//python.about.com']

>>> y = re.split(':/{1,3}?', 'ftp://python.about.com')
>>> print y
['ftp', '/python.about.com']

>>> y = re.split(':/{1,3}?', 'ftp:/python.about.com')
>>> print y
['ftp', 'python.about.com']

Back to the main index of this glossary
Explore Python
About.com Special Features

The Best Web Trends of the Decade

A look back at the best innovations, ideas and technologies over the last 10 years, More >

Family Tech Center

Stay connected and entertained with reviews on tips on the latest HDTVs, cellphones and more. More >

  1. Home
  2. Computing & Technology
  3. Python
  4. Regular Expressions
  5. Python RegEx Examples
  6. Compound Regex
  7. Python RegEx - Python Regular Expressions - Examples - Curly Braces with Question Marks

©2009 About.com, a part of The New York Times Company.

All rights reserved.