2
votes
What is the difference between Python’s re.search and re.match?
Have you had a look at the documentation?
Python offers two different primitive oper …
4
votes
How to parse a command line with regular expressions?
You should not use regular expressions for this. Write a parser instead, or use one provided by your language.
…
10
votes
How can I translate the following filename to a regular expression in Python?
Now that you have a human readable description of your file name, it's quite straight forward to translate it into a regular expression (at least in this case ;)
must start w …
0
votes
How can one turn regular quotes (i.e. ‘, “) into LaTeX/TeX quotes (i.e. `’, ``’’)
Do not use regular expressions for this kind of task!
Maybe you can get some inspiration from SmartyPants?
…
4
votes
Reversing a regular expression in python
Although I don't see much sense in this, here goes:
import re
import string
def traverse(tree):
retval = ''
for node in tree:
if node[0] == 'any':
retva …
2
votes
how could I combine these regex rules?
Since the ^ does not have to stand at the beginning of the RE, you can use grouping and | to combine those REs.
If you don't want re-insert the whitespace you capt …
