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
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
1answer
298 views
Regex to match quoted strings with negative lookbehind (.NET)
I am trying to create a .NET Regex that will match quoted strings in VB.NET source code, but excluding certain unwanted strings, such as strings in XML comments and region labels etc.
Here's a data ...
1
vote
3answers
1k views
Javascript does not support positive lookbehind
I have the following regular expression in .Net
(?<=Visitors.{0,100}?"value">)[0-9,]+(?=</div>)
and the following text
<div class="text">Visitors</div> <div ...
0
votes
2answers
76 views
Regex Look-Behind for Right to Left event
I'm extracting the events ending with Windows LogonIDs... this means like:
Special Privileges assigned to a new Logon: Logon Id: 0x007d
I thought this is the best way to do it:
...
-2
votes
5answers
897 views
Help with negative lookbehind in regular expressions
I am working on a ASP.NET response filter that rewrites URL's to point to a different domain in specific situations.
Because ASP.NET chunks the response writes, my filter gets called several times ...