0
votes
regular expression lookaround
Try this:
@"(?s)set_Field\(""[^""]*"",\s*(?<vname>\w+)(?<=\bDateTime\s+\k<vname>\b.+)"
By doing the lookbehind first, you're forcing the regex to s …
2
votes
Equivalent of Java’s “LookingAt()” in .net?
I don't think lookingAt() is the correct model for what you're trying to do. All it does is anchor the match to the beginning of the input, as if you had used the ^ start …
1
vote
A more efficient Regex or alternative?
As far as I can see, the regexes that have been offered so far are much more complicated than they need to be. If @sixlettervariables' Split approach works, Matches should work with this regex: …
0
votes
I only want to match the start tags in regex
All of the solutions offered so far match the second <P>, but that's wrong. What if there are two consecutive <P> elements without closing tags? The second one won't be matched because the …
0
votes
Regex replace, but only between two patterns
I think the simplest way would be to match the quoted sections with “(?s:.*?)” and use a …
4
votes
Regex replace, but only between two patterns
Assuming all curly quotes are properly balanced, this regex should do what you want:
@"[\r\n]+(?=[^“”]*”)"
The [\r\n]+ will match one or more line sep …
2
votes
C# - Processing html tag attributes
That's an interesting approach, but like bobince said, you can only process one attribute per match. This regex will match everything up to the attribute you're interested in:
@"(& …
1
vote
How to find this using Regular Expression?
@"(?s)(?:START|BEGIN).*?\)\)"
What some of the others are calling "multiline mode" is actually single-line (or DOTALL) mode. That's the mode that lets the dot mat …
2
votes
Does .NET regular expressions engine support inline mode modifiers?
Aside from the RegexOptions compiler flags, there's no direct equivalent for the /s style of modifier, but you can get the same effect by placing an inline modifier at the very beginni …
2
votes
Multi-line regex with overlapping matches
Here's a regex that works with your sample data:
@"([^,{}\s]+(?:\s+[^,{}\s]+)*)(?=[^{}]*(\{[^{}]+\}))"
The first part matches and captures a selector (td.class1) i …
1
vote
XML encoding issue
I don't know what's causing your problem, but it isn't a limitation of UTF-8 or an error in the encoding process. UTF-8 can encode every character known to Unicode, and the problematic byte sequen …
0
votes
Getting U+fffd/65533 instead of special character from Query String
If the app is expecting the URL-encoded request to be based on UTF-8, the character "ø" should be "%C3%B8", not "%F8". Whatever function you're using to esca …
0
votes
regular expression $ in .net framework
There seems to be some coufusion about what exactly you're applying the regex to. The way it appeared in your original post, the string literal seemed to have literal newlines in it (which shouldn …
2
votes
How to prevent Regular Expression of hang (or set time out for it) in .Net
You can rewrite the regex so that it fails as quickly as possible when no match is possible, like so:
<!--(?>(?:[^-]+|-(?!->))*)-->
If the unclosed com …
4
votes
Regular Expression for alphnumeric and space.
Assuming "special characters" means anything that's not a letter or digit, and "space" means the space character (ASCII 32):
^[A-Za-z0-9 ]+$
…
