]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/python/oils/utils/utils.py
adding oils libs
[Evergreen.git] / Open-ILS / src / python / oils / utils / utils.py
1 # -----------------------------------------------------------------------
2 # Copyright (C) 2007  Georgia Public Library Service
3 # Bill Erickson <billserickson@gmail.com>
4
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; either version 2
8 # of the License, or (at your option) any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 # -----------------------------------------------------------------------
15
16 import re
17
18 # -----------------------------------------------------------------------
19 # Grab-bag of general utility functions
20 # -----------------------------------------------------------------------
21
22
23 # -----------------------------------------------------------------------
24 # more succinct search/replace call
25 # -----------------------------------------------------------------------
26 def replace(str, pattern, replace):
27    return re.compile(pattern).sub(replace, str)
28
29
30
31       
32