Tagged Questions
51
votes
12answers
7k views
Is it worth using Python's re.compile?
Is there any benefit in using compile for regular expressions in Python?
h = re.compile('hello')
h.match('hello world')
vs
re.match('hello', 'hello world')
48
votes
8answers
12k views
Split a string by spaces — preserving quoted substrings — in Python
I have a string which is like this:
this is "a test"
I'm trying to write something in Python to split it up by space while ignoring spaces within quotes. The result I'm looking for is:
...
39
votes
3answers
2k views
Worst Case Analysis for Regular Expressions
Are there any tools that will take a particular regular expression and return the worst case scenario in terms of the number of operations required for a certain number of characters that the regular ...
24
votes
6answers
828 views
Find the number of occurrences of a subsequence in a string
For example, let the string be the first 10 digits of pi, 3141592653, and the subsequence be 123. Note that the sequence occurs twice:
3141592653
1 2 3
1 2 3
This was an interview ...
18
votes
10answers
12k views
How do you validate a URL with a regular expression in Python?
I'm building a Google App Engine app, and I have a class to represent an RSS Feed.
I have a method called setUrl which is part of the feed class. It accepts a url as an input.
I'm trying to use the ...
18
votes
5answers
9k views
What is the difference between Python's re.search and re.match?
What is the difference between the search() and match() functions in the Python re module?
I've read the documentation, but I never seem to remember it. I keep having to look it up and re-learn it. ...
18
votes
10answers
3k views
How do you translate this regular-expression idiom from Perl into Python?
I switched from Perl to Python about a year ago and haven't looked back. There is only one idiom that I've ever found I can do more easily in Perl than in Python:
if ($var =~ /foo(.+)/) {
# do ...
17
votes
11answers
8k views
Python snippet to remove C and C++ comments
I'm looking for Python code that removes C and C++ comments from a string. (Assume the string contains an entire C source file.)
I realize that I could .match() substrings with a Regex, but that ...
16
votes
2answers
4k views
Escaping regex string in Python
I want to use input from a user as a regex pattern for a search over some text. It works, but how I can handle cases where user puts characters that have meaning in regex? For example, the user ...
16
votes
9answers
8k views
In python how to I verify that a string only contains letters, numbers, underscores and dashes?
I know how to do this if I iterate through all of the characters in the string but I am looking for a more elegant method.
Thanks
15
votes
3answers
535 views
Negative Lookahead Regex greed (why is .*? too greedy)
I'm having trouble understanding the finer details of negative lookahead regular expressions. After reading Regex lookahead, lookbehind and atomic groups, I thought I had a good summary of negative ...
15
votes
5answers
565 views
Writing a parser for regular expressions
Even after years of programming, I'm ashamed to say that I've never really fully grasped regular expressions. In general, when a problem calls for a regex, I can usually (after a bunch of referring to ...
15
votes
12answers
3k 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 ...
15
votes
1answer
11k views
Case insensitive Python regular expression without re.compile
In Python, I can compile a regular expression to be case-insensitive using re.compile:
>>> s = 'TeSt'
>>> casesensitive = re.compile('test')
>>> ignorecase = ...
13
votes
4answers
217 views
is there need for a more declarative way of expressing regular expressions ? :)
I am trying to create a Python function that can take an plain English description of a regular expression and return the regular expression to the caller.
Currently I am thinking of the description ...
13
votes
3answers
1k 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 ...
13
votes
4answers
28k views
Regex replace (in Python) - a more simple way?
Any time I want to replace a piece of text that is part of a larger piece of text, I always have to do something like:
"(?P<start>some_pattern)(?P<replace>foo)(?P<end>end)"
And ...
12
votes
5answers
209 views
Python pattern-matching. Match 'c[any number of consecutive a's, b's, or c's or b's, c's, or a's etc.]t'
Sorry about the title, I couldn't come up with a clean way to ask my question.
In Python I would like to match an expression 'c[some stuff]t', where [some stuff] could be any number of consecutive ...
12
votes
2answers
647 views
Does Flask support regular expressions in its URL routing?
I understand that Flask has the int, float and path converters, but the application we're developing has more complex patterns in its URLs.
Is there a way we can use regular expressions, as in ...
12
votes
6answers
516 views
Is it safe to use user input for Python's regular expressions?
I would like to let my users use regular expressions for some features. I'm curious what the implications are of passing user input to re.compile(). I assume there is no way for a user to give me a ...
12
votes
5answers
791 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 ...
12
votes
7answers
6k views
Regular expression syntax for “match nothing”?
I have a python template engine that heavily uses regexp. It's uses concatenation like
re.compile( regexp1 + "|" + regexp2 + "*|" + regexp3 + "+" )
I can modify individual substrings (regexp1, ...
11
votes
4answers
198 views
Efficient strings containing each other
I have two sets of strings (A and B), and I want to know all pairs of strings a in A and b in B where a is a substring of b.
The first step of coding this was the following:
for a in A:
for b in ...
11
votes
6answers
1k views
Python: Split a string at uppercase letters
What is the pythonic way to split a string before the occurrences of a given set of characters?
For example, I want to split
'TheLongAndWindingRoad'
at any occurrence of an uppercase letter ...
11
votes
6answers
1k views
What's the most efficient way to find one of several substrings in Python?
I have a list of possible substrings, e.g. ['cat', 'fish', 'dog']. In practice the list contains hundreds of entries.
I'm processing a string, and what I'm looking for is to find the index of first ...
11
votes
5answers
2k views
Can I use named groups in a Perl regex to get the results in a hash?
Is it possible to perform a named-group match in Perl's regex syntax as with Python's? I always bind the $n values to proper names after matching, so I'd find it more convenient to do it in the regex ...
11
votes
16answers
3k views
Hashtable/dictionary/map lookup with regular expressions
I'm trying to figure out if there's a reasonably efficient way to perform a lookup in a dictionary (or a hash, or a map, or whatever your favorite language calls it) where the keys are regular ...
11
votes
7answers
1k views
Caching compiled regex objects in Python?
Each time a python file is imported that contains a large quantity of static regular expressions, cpu cycles are spent compiling the strings into their representative state machines in memory.
a = ...
11
votes
3answers
5k views
Python re.sub MULTILINE caret match
The Python docs say:
re.MULTILINE: When specified, the pattern character '^' matches at the beginning of the string and at the beginning of each line (immediately following each newline)... By ...
10
votes
11answers
2k views
How to split but ignore separators in quoted strings, in python?
I need to split a string like this, on semicolons. But I don't what to split on semicolons that are inside of a string (' or "). I'm not parsing a file; just a simple string with no line breaks.
part ...
10
votes
2answers
450 views
Why doesn't Python's `re.split()` split on zero-length matches?
One particular quirk of the (otherwise quite powerful) re module in Python is that re.split() will never split a string on a zero-length match, for example if I want to split a string along word ...
10
votes
4answers
948 views
Is it possible to use re2 from Python?
i just discovered http://code.google.com/p/re2, a promising library that uses a long-neglected way (Thompson NFA) to implement a regular expression engine that can be orders of magnitudes faster than ...
9
votes
6answers
296 views
Is there a way to really pickle compiled regular expressions in python?
I have a python console application that contains 300+ regular expressions. The set of regular expressions is fixed for each release. When users run the app, the entire set of regular expressions ...
9
votes
1answer
266 views
Is_prime function via regex in python (from perl)
I've read this article where the /^1?$|^(11+?)\1+$/ Perl regex is used to test if a number is prime or not.
Process:
s = '1' * your_number
If s matchs the regex, then it's not prime. If it ...
9
votes
9answers
1k views
How do I find the shortest overlapping match using regular expressions?
I'm still relatively new to regex. I'm trying to find the shortest string of text that matches a particular pattern, but am having trouble if the shortest pattern is a substring of a larger match. For ...
9
votes
2answers
585 views
9
votes
4answers
3k views
Regex and unicode
I have a script that parses the filenames of TV episodes (show.name.s01e02.avi for example), grabs the episode name (from the www.thetvdb.com API) and automatically renames them into something nicer ...
8
votes
1answer
85 views
How to portably parse the (Unicode) degree symbol with regular expressions?
I'm writing a simple regular expression parser for the output of the sensors utility on Ubuntu. Here's an example of a line of text I'm parsing:
temp1: +31.0°C (crit = +107.0°C)
And here's ...
8
votes
3answers
666 views
Python re infinite execution
I'm trying to execute this code :
import re
pattern = r"(\w+)\*([\w\s]+)*/$"
re_compiled = re.compile(pattern)
results = re_compiled.search('COPRO*HORIZON 2000 HOR')
...
8
votes
2answers
115 views
What does the python re.template function do?
While using the re module in ipython I noticed an undocumented template function:
In [420]: re.template?
Type: function
Base Class: <type 'function'>
String Form: <function ...
8
votes
6answers
129 views
Finding an Insertion in a String
What's the best way of checking if StringA = StringB with an another StringC inserted at some arbitrary point?
For example, given abcdef and abcXYZdef, I want to find that abcXYZdef is abcdef with ...
8
votes
2answers
208 views
regex numeric data processing: match a series of numbers greater than X
Say I have some data like this:
number_stream = [0,0,0,7,8,0,0,2,5,6,10,11,10,13,5,0,1,0,...]
I want to process it looking for "bumps" that meet a certain pattern.
Imagine I have my own customized ...
8
votes
4answers
2k views
Match groups in Python
Is there a way in Python to access match groups without explicitely creating a match object (or another way to beautify the example below)?
Here is an example to clarify my motivation for the ...
8
votes
3answers
313 views
Regex: Using lookahead assertion to check if character exist at most a certain number of times
How do I use lookahead assertion to determine if a certain character exist at most a certain number of times in a string.
For example, let's say I want to check a string that has at least one ...
8
votes
6answers
1k views
Python regex for reading CSV-like rows
I want to parse incoming CSV-like rows of data. Values are separated with commas (and there could be leading and trailing whitespaces around commas), and can be quoted either with ' or with ". For ...
8
votes
4answers
9k views
How to remove symbols from a string with Python?
I'm a beginner with both Python and RegEx, and I would like to know how to make a string that takes symbols and replaces them with spaces. Any help is great.
For example:
how much for the maple ...
8
votes
7answers
1k views
Reversing a regular expression in python
I want to reverse a regular expression. i.e. given a regular expression, I want to produce any string that will match that regex.
I know how to do this from a theoretical computer science background ...
8
votes
6answers
3k views
Parsing GPS receiver output via regex in Python
I have a friend who is finishing up his masters degree in aerospace engineering. For his final project, he is on a small team tasked with writing a program for tracking weather balloons, rockets and ...
8
votes
2answers
685 views
Does re.compile() or any given Python library call throw an exception?
I can't tell from the Python documentation whether the re.compile(x) function may throw an exception (assuming you pass in a string). I imagine there is something that could be considered an invalid ...
7
votes
1answer
56 views
Python regex search AND split
In PHP one can use the function preg_match with the flag PREG_OFFSET_CAPTURE in order to search a regex patter within a string and know what follows and what comes first. For example, given the string ...