Tagged Questions
2
votes
1answer
61 views
Regex positive lookahead with backreference
I'm trying to build a very specific editor with syntax highlight.
I've made all the simple stuff with regular expressions wich was simple enough, but now I would like to add some advanced features ...
2
votes
4answers
161 views
Why doesn't finite repetition in lookbehind work in some flavors?p
I want to parse the 2 digits in the middle from a date in dd/mm/yy format but also allowing single digits for day and month.
This is what I came up with:
(?<=^[\d]{1,2}\/)[\d]{1,2}
I want a 1 ...
2
votes
2answers
135 views
Lazy Regex Match in .NET. What's wrong here?
In the following example I would like to retrieve the text between pMAINp and the first pMDSp. The regex has a look-behind and a look-ahead:
string contents = "pMAINp MAP B FlightTest Load pMDSp ...
1
vote
3answers
333 views
How can I use lookbehind in a C# Regex in order to skip matches of repeated prefix patterns?
How can I use lookbehind in a C# Regex in order to skip matches of repeated prefix patterns?
Example - I'm trying to have the expression match all the b characters following any number of a ...
1
vote
6answers
994 views
A regex problem I can't figure out (negative lookbehind)
how do i do this with regex?
i want to match this string: -myString
but i don't want to match the -myString in this string: --myString
myString is of course anything.
is it even possible?
EDIT:
...