0
votes
6answers
71 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
104 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
96 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
98 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
91 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 …
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 …
0
votes
7answers
78 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
55 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
89 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
72 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
99 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 …
-2
votes
3answers
91 views
Python regular expression
How to parse the string " {'result':(Boolean, MessageString)} " using Python regular expressions to get Boolean and the MessageString separated into variables?
2
votes
5answers
1k views
What’s the cleanest way to extract URLs from a string using Python?
Hi all
Although I know I could use some hugeass regex such as the one posted here I'm wondering if there is some tweaky as hell way to do this either with a standard module or perhaps some …
7
votes
3answers
78 views
Python regex matching Unicode properties
Perl and some other current regex engines support Unicode properties, such as the category, in a regex. E.g. in Perl you can use \p{Ll} to match an arbitrary lower-case letter, or p{Zs} for any space …
9
votes
3answers
145 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 …
