1
vote
Escape path separator in a regular expression
Why don't you escape File.separator:
... +
"\\" + File.separator +
...
to fit Pattern.compile requirements?
I hope "\/" (unix case) is pr …
0
votes
4
votes
Escaping regex string in Python
You can use re.escape():
re.escape(string)
Return string with all non-alphanumerics backs …
1
vote
How do I strptime from a pattern like this?
Using the ending 3 words, no need for regexps (using the time module):
>>> import time
>>> a="Some Random text of undetermined length Jan 28, 1986"
&g …
1
vote
Python regex
Modifying your regexp a little,
>>> str = "'813702104[813702106]','813702141[813702143]','813702172[813702174]"
>>> imgRegex = re.compile(r"'(?P<main>\d+)\[( …
3
votes
Remove characters using Regex
Build the pattern using Regex.Escape:
StringBuilder pattern = new StringBuilder();
foreach (string s in arrayOfStringsToRemove)
{
pattern.Append("(");
pattern.Append(Regex.E …
3
votes
python regex trouble
Regex language operator precedence puts head\s+(\S+) as the 4th alternative. The parenthesis in @Mykola Kharechko's answer arrange for head as the 4th alternative …
0
votes
How do i write a regular expression for the following pattern in python?
Expanding on @batbrat's answer, and the other suggestions, you can use re.split() to separate the input string. The pattern can use \s (whitespace) or an explicit space. …
3
votes
Escaping C++ code in C# Regex
For this simple task, you don't really need a regexp. Using String.Replace() is straight …
0
votes
regular expression help with converting exp1^exp2 to pow(exp1, exp2)
See recent discussion function-parser-with-regex-in-python (one of many similar discussions). Then follo …
1
vote
C# regex to replace a delimiter by another one
A regex is not really needed - you can iterate on lines, locate the lines starting with "--" and replace ";" with "~" on them.
…
1
vote
0
votes
Python regex question: stripping multi-line comments but maintaining a line break
See can-regular-expressions-be-used-to-match-nested-patterns - if you consider neste …
0
votes
Regular Expression Sub Problems
Your example doesn't need regexps, use str.replace():
>>> str_to_be_subbe …
5
votes
regex for character appearing at most once
No regexp is needed, see str.count():
str.count(sub[, start[, end]]) …
