8
votes
In python how to I verify that a string only contains letters, numbers, underscores and dashes?
[Edit] There's another solution not mentioned yet, and it seems to outperform the others given so far in most cases.
Use string.translate to replace all valid characters in the string, and …
6
votes
I’m using Python regexes in a criminally inefficient manner
The first thing that may improve things is to move the re.compile outside the function. The compilation is cached, but there is a speed hit in checking this to see if its compiled.
Another …
8
votes
Regular expression to match start of filename and filename extension
For a regular expression, you would use:
re.match(r'Run.*\.py$')
A quick explanation:
. means match any character.
* means match any repetit …
0
votes
I’m looking for a pythonic way to insert a space before capital letters.
I think regexes are the way to go here, but just to give a pure python version without (hopefully) any of the problems ΤΖΩΤΖΙΟΥ has pointed out:
def splitCaps(s):
result = []
…
6
votes
Python re.findall with groupdicts
You could use the finditer() function. This will give you a sequence of match objects, so you can get the groupdict for each with:
[m.groupdict() for m in regex.finditer(search_str …
4
votes
How do I strptime from a pattern like this?
You may find this question useful. I'll give the answer I gave there, which is to use t …
1
vote
Python’s re module - saving state?
You could write a utility class to do the "save state and return result" operation. I don't think this is that hackish. It's fairly trivial to implement:
class Var(object):
de …
4
votes
Why doesn’t the regex match when I add groups?
The bracket is part of the or branch starting with fade, so it's looking for either "{fad" or "fade(...". You need to group the fad|fade part together. Try:
r"\{\\(?:fad|fade)\(\d …
0
votes
split a string by a delimiter in a context sensitive way
You can get close using non-greedy specifiers. The closest I've got is:
>>> re.findall('(".*?"|.*?)(?:,|$)', '"a,b,c",d,e,f')
['"a,,b,c"', 'd', '', 'f', '']
…
3
votes
help with python regular expression
Your problem is that the regex is continuing to find the BTO in the next group. As a quick workaround, you could just prohibit the "#" character in the interface id (assuming this isn't valid with …
