The regsub Module

(Obsolete) The regsub module, shown in Example 14-33, provides string replacements, based on regular expressions. New code should use the re modules replace function instead.

Example 14-33. Using the regsub Module
File: regsub-example-1.py

import regsub

text = "Well, theres spam, egg, sausage, and spam."

print regsub.sub("spam", "ham", text) # just the first
print regsub.gsub("spam", "bacon", text) # all of them

Well, theres ham, egg, sausage, and spam.
Well, theres bacon, egg, sausage, and bacon.

Core Modules

More Standard Modules

Threads and Processes

Data Representation

File Formats

Mail and News Message Processing

Network Protocols

Internationalization

Multimedia Modules

Data Storage

Tools and Utilities

Platform-Specific Modules

Implementation Support Modules

Other Modules



Python Standard Library
Python Standard Library (Nutshell Handbooks) with
ISBN: 0596000960
EAN: 2147483647
Year: 2000
Pages: 252
Authors: Fredrik Lundh

Flylib.com © 2008-2020.
If you may any questions please contact us: flylib@qtcs.net