18
votes
9answers
1k 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')
15
votes
7answers
3k 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:
…
13
votes
9answers
981 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 …
9
votes
10answers
2k 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 …
9
votes
9answers
2k 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
8
votes
6answers
604 views
What’s the most efficient way to find one of several substrings in Python?
Hello,
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 …
8
votes
15answers
1k 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 …
7
votes
4answers
159 views
Capture the contents of a regex and delete them, efficiently.
Situation:
text: a string
R: a regex that matches part of the string. This might be expensive to calculate.
I want to both delete the R-matches from the text, and see what they actually …
6
votes
2answers
193 views
How to decompile a regex?
Is there any way to decompile a regular expression once compiled?
6
votes
4answers
172 views
Find cpu-hogging plugin in multithreaded python
I have a system written in python that processes large amounts of data using plug-ins written by several developers with varying levels of experience.
Basically, the application starts several worker …
6
votes
5answers
298 views
Python’s re module - saving state?
Hi,
One of the biggest annoyances I find in Python is the inability of the re module to save its state without explicitly doing it in a match object. Often, one needs to parse lines and if they …
6
votes
5answers
617 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 …
6
votes
9answers
627 views
Can Regex be used for this particular string manipulation?
I need to replace character (say) x with character (say) P in a string, but only if it is contained in a quoted substring.
An example makes it clearer:
axbx'cxdxe'fxgh'ixj'k -> …
6
votes
8answers
643 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 = …
6
votes
2answers
393 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 …
