473,416 Members | 1,506 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,416 software developers and data experts.

search/replace in Python

Hello,
I'm having some problems understanding Regexps in Python. I want
to replace "<google>PHRASE</google>" with
"<a href=http://www.google.com/search?q=PHRASE>PHRASE</a>" in a block of
text. How can I achieve this in Python? Sorry for the naive question but
the documentation is really bad :-(

Regards,
GVK
Jul 19 '05 #1
5 2872
Hi,

2005/5/28, Vamsee Krishna Gomatam <va******@nospam.students.iiit.ac.in>:
Hello,
I'm having some problems understanding Regexps in Python. I want
to replace "<google>PHRASE</google>" with
"<a href=http://www.google.com/search?q=PHRASE>PHRASE</a>" in a blockof
text. How can I achieve this in Python? Sorry for the naive question but
the documentation is really bad :-(


it is pretty easy and straightforward. After you imported the re
module, you can do the job with re.sub or if you have to do it often,
then you can compile the regex first with re.compile
and afterwards use the sub method of the compiled regex.

The interesting part is

re.sub(r"<google>(.*)</google>",r"<a
href=http://www.google.com/search?q=\1>\1</a>", text)

cause here the job is done. The first raw string is the regex pattern.
The second one is the target where \1 is replaced by everything
enclosed in () in the first regex.

Here is the output of my ipython session.

In [15]: text="This is a <google>Python</google>. And some random
nonsense test....."

In [16]: re.sub(r"<google>(.*)</google>",r"<a
href=http://www.google.com/search?q=\1>\1</a>", text)

Out[16]: 'This is a <a
href=http://www.google.com/search?q=Python>Python</a>. And some random
nonsense test.....'

Best regards,
Oliver
Jul 19 '05 #2
Vamsee Krishna Gomatam wrote:
Hello,
I'm having some problems understanding Regexps in Python. I want
to replace "<google>PHRASE</google>" with
"<a href=http://www.google.com/search?q=PHRASE>PHRASE</a>" in a block of
text. How can I achieve this in Python? Sorry for the naive question but
the documentation is really bad :-(
VKG,

Sorry you had such difficulty; if you can explain in a bit more detail,
we could perhaps fix that "really bad" [compared with what?] documentation.

Whether you are doing a substitution programatically in Python, or in
any other language, or manually using a text editor, you need to specify
some input text, a pattern, and a replacement.

The syntax for pattern and replacement for what you want to do differs
in only minor details (if at all) among major languages and common text
editors, and it's been that way for years. For example, see the
retro-computing museum exhibit at the end of this posting.

So, did you have any problem determining that PHRASE is represented by
(.*) -- good enough if there is only one occurrence of your target -- in
the pattern, and by \1 in the replacement?

Did you have a problem with this part of the docs (which is closely
followed by an example with \1 in the replacement), and if so, what was
the problem?

sub( pattern, repl, string[, count])

Return the string obtained by replacing the leftmost non-overlapping

occurrences of pattern in string by the replacement repl.

Have you used regular expressions before? If not, then you shouldn't
expect to learn how to use them from the documentation, which does
adequately _document_ the provided functionality. This is just like how
the manual supplied with a new car documents the car's functionality,
but doesn't attempt to teach how to drive it. If you haven't done so
already, you may like to do what the documentation suggests:

consult the Regular Expression HOWTO, accessible from
http://www.python.org/doc/howto/.

And out with the magic lantern ... here's the promised blast from the
past, using Oliver's sample input:

C:\junk>dir \bin\ed.com
[snip]
30/11/1985 04:43p 18,936 ed.com
[snip]
C:\junk>ed
Memory available : 59K bytesa This is a <google>Python</google>. And some randomnonsense test.....
..p This is a <google>Python</google>. And some randomnonsense test.....s/<google>\(.*\)<\/google>/<a href=http:\/\/www.google.com\/search?q=\1>\1<\/a>/p This is a <a href=http://www.google.com/search?q=Python>Python</a>. And
some randomnonsense test.....


Cheers,
John
Jul 19 '05 #3
Oliver Andrich wrote:
re.sub(r"<google>(.*)</google>",r"<a
href=http://www.google.com/search?q=\1>\1</a>", text)


For real-world use you'll want to URL encode and entityify the text:

import cgi
import urllib

def google_link(text):
text = text.group(1)
return '<a href="%s">%s</a>' % (cgi.escape(urllib.quote(text)),
cgi.escape(text))

re.sub(r"<google>(.*)</google>", google_link, "<google>foo bar</google>)
Jul 19 '05 #4
Leif K-Brooks wrote:
Oliver Andrich wrote:
For real-world use you'll want to URL encode and entityify the text:

import cgi
import urllib

def google_link(text):
text = text.group(1)
return '<a href="%s">%s</a>' % (cgi.escape(urllib.quote(text)),
cgi.escape(text))

re.sub(r"<google>(.*)</google>", google_link, "<google>foo bar</google>)

Thanks a lot for your reply. I was able to solve it this way:
text = re.sub( "<google>([^<]*)</google>", r'<a
href="http://www.google.com/search?q=\1">\1</a>', text )
GVK
Jul 19 '05 #5
Vamsee Krishna Gomatam wrote:
text = re.sub( "<google>([^<]*)</google>", r'<a
href="http://www.google.com/search?q=\1">\1</a>', text )


But see what happens when text contains spaces, or quotes, or
ampersands, or...
Jul 19 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: gyromagnetic | last post by:
Hi, I have written a function that searches a text string for various words. The text is searched using a boolean 'and' or a boolean 'or' of the input list of search terms. Since I need to use...
1
by: Les Juby | last post by:
A year or two back I needed a search script to scan thru HTML files on a client site. Usual sorta thing. A quick search turned up a neat script that provided great search results. It was fast,...
22
by: Phlip | last post by:
C++ers: Here's an open ended STL question. What's the smarmiest most templated way to use <string>, <algorithms> etc. to turn this: " able search baker search charlie " into this: " able...
5
by: pembed2003 | last post by:
Hi all, I need to write a function to search and replace part of a char* passed in to the function. I came up with the following: char* search_and_replace(char* source,char search,char*...
32
by: tshad | last post by:
Can you do a search for more that one string in another string? Something like: someString.IndexOf("something1","something2","something3",0) or would you have to do something like: if...
6
by: Martin Evans | last post by:
Sorry, yet another REGEX question. I've been struggling with trying to get a regular expression to do the following example in Python: Search and replace all instances of "sleeping" with "dead"....
6
by: DataSmash | last post by:
Hello, I need to search and replace 4 words in a text file. Below is my attempt at it, but this code appends a copy of the text file within itself 4 times. Can someone help me out. Thanks! #...
1
Merlin1857
by: Merlin1857 | last post by:
How to search multiple fields using ASP A major issue for me when I first started writing in VB Script was constructing the ability to search a table using multiple field input from a form and...
7
by: DannyMc | last post by:
Hi , i am in the middle of creating the script to match the string and replace it in mount.txt mickey:/work1 /work1 bla bla bla mickey:/work2 /work2 bla bla bla micket:/job /job bla bla bla
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.