2
votes
4answers
122 views
Python regular expression inconsistency
I am getting different results based on whether I precompile a regular expression:
>>> re.compile('mr', re.IGNORECASE).sub('', 'Mr Bean')
' Bean'
>>> re.sub('mr', '', 'Mr Bean', …
0
votes
4answers
108 views
Regular Expression to split on specific character ONLY if that character is not in a pair
After finding the fastest string replace algorithm in this thread, I've been trying to modify one of them to suit my needs, particularly this one by gnibbler.
I will explain the problem again here, …
7
votes
12answers
1k 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 …
1
vote
4answers
71 views
Prevent RegEx Hang on Large Matches…
This is a great regular expression for dates... However it hangs indefinitely on this one page I tried... I wanted to try this page ( http://pleac.sourceforge.net/pleac%5Fpython/datesandtimes.html ) …
0
votes
2answers
77 views
regex to remove URL from text
I want to remove all occurrences of URL [full path, query string] from the text in Python. Any suggestions on how to do this? I am new to regex!
http://example.com/url/?x=data
This whole URL should …
2
votes
2answers
90 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
88 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
107 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
98 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
103 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
94 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
81 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
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
57 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 …
9
votes
3answers
154 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 …
