Tagged Questions

7
votes
12answers
809 views

Mass string replace in python?

Say I have a string that looks like this: str = "The &yquick &cbrown &bfox &Yjumps over the &ulazy dog" You'll notice a lot of locations in the string where there is an …
2
votes
2answers
84 views

Whether to simplify two stage regular expression?

I'm newbie in Python, but this question is not a homework (actually this code helps to generate RSS on my Subversion server). I have an array of strings in the info_lines variable. And I want to …
0
votes
6answers
79 views

python url fetch help - regex

I have a web site where there are links like <a href="http://www.example.com?read.php=123"> Can anybody show me how to get all the numbers (123, in this case) in such links using python? I don't …
0
votes
3answers
105 views

Creating Regular Expressions in Python

Hi All, I'm trying to create regular expression that filters from the following partial text: amd64 build of software 1:0.98.10-0.2svn20090909 in archive what I want to extract is: software …
0
votes
5answers
97 views

How can I create a regular expression in Python?

I'm trying to create regular expressions to filter certain text from a text file. What I want to filter has this format: word_*_word.word So for example, I would like the python code every match. …
1
vote
5answers
99 views

Parsing multilevel text list

I need to parse text lists: 1 List name 1 item 2 item 3 item 2 List name 1 item 2 item 3 item 3 List name 1 item 2 item 3 item I was trying to use regular expression to split first level list: …
1
vote
2answers
56 views

Python 3 (2.6+) str.format() and regular expressions

Using str.format() is the new standard for formatting strings in Python 2.6, and Python 3. I've run into an issue when using str.format() with regular expressions. I've written a regular expression …
1
vote
2answers
93 views

How to detect an invalid C escaped string using a regular expression?

I would like to find a regular expression (regex) that does detect if you have some invalid escapes in a C double quoted escaped string (where you can find double quotes only escaped). I consider …
0
votes
7answers
79 views

How to use re to search for items in one list inside another list in Python

I am reading a list of strings, each of which relate to a file name. However, each string is minus the extension. I have come up with the following code: import re item_list = ['item1', 'item2'] …
1
vote
2answers
56 views

python regular expression across multiple lines

I'm gathering some info from some cisco devices using python and pexpect, and had a lot of success with REs to extract pesky little items. I'm afraid i've hit the wall on this. Some switches stack …
1
vote
4answers
90 views

Find two of the same character in a string with regular expressions

This is in reference to a question I asked before here I received a solution to the problem in that question but ended up needing to go with regex for this particular part. I need a regular …
1
vote
2answers
75 views

Regular Expression search/replace help needed, Python

One rule that I need is that if the last vowel (aeiou) of a string is before a character from the set ('t','k','s','tk'), then a : needs to be added right after the vowel. So, in Python if I have the …
1
vote
1answer
100 views

Text extraction from email in Python

My users will send me posts by email ala Posterous I'm using Google Apps Engine (GAE) to receive and parse emails. GAE returns the text part of the message. I need to extract the post from the plain …
9
votes
3answers
149 views

How can you detect if two regular expressions overlap in the strings they can match?

I have a container of regular expressions. I'd like to analyze them to determine if it's possible to generate a string that matches more than 1 of them. Short of writing my own regex engine with this …
1
vote
6answers
107 views

matching stored keywords/phrases in text

Hi I have a database table with around 1000 keywords/phrases (one to four words long) - This table changes rarely, so I could extract the data into something more useful (like a regular expression?) …

1 2 3 4 5 23 next
15 30 50 per page