python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Improving the performance of an PCRE Regex Pattern
I have the below regex here which is written to support the PRCE/PRCE2 format. However, this throws the following error “Evaluation takes too long. Please check your regular expression.” Is there any ...
Kamesh
Votes: 0
Answers: 2
Regex expression to match on hyphens in words within sentence based on occurrences of hyphen
I am trying to match on hyphens in a word but only if the hyphen occurs in said word say more than once
So in the phrase "Step-By-Step" the hyphens would be matched whereas in the phrase &qu...
Ryanmc174
Votes: 0
Answers: 2
Regex to match everything inside brackets ignore nested
I am looking for a regex rule to match everything inside square brackets, including the brackets and ignoring the possible brackets inside. E.g. from:
[value] in the [text[42]] and [1[2[3]]]!
I need ...

Kiramm
Votes: 0
Answers: 1
Negative lookahead regex for apache mod header cookies - keep certain cookies
Trying to modify an apache request header directive, I need to use a negative lookahead regex to keep only certain cookies.
Test string
someCookie=someValue; anotherCookie=yada61; cookieToKeep1=myValu...
djgavboy
Votes: 0
Answers: 1