1
vote
RegEx to replace value including new lines
@Will, by replacing the dot with a negated character class, you eliminated the need for the single-line modifier. And if I'm reading the question right, you don't need to use lookarounds either. …
0
votes
Regex - Using Groups and MatchCollection - Problems
As you said, it's easy enough to match the keyword(s) and then use (.+) to match the rest of the line. But you have to match all of the intervening characters, and you aren't doing that. (The ^ l …
0
votes
Using Lookahead to match a string using a regular expression
Try this:
@"(?is)<SPAN\b[^>]*>\s*(<SPAN\b[^>]*>.*?</SPAN>)\s*</SPAN>"
This is basically the same as PhiLho's regex, except it permits …
0
votes
regular expression for finding parts of a string within another
Charlie Martin almost has it right, but you have to do a complete pass for each letter. You can do that with a single regex by using lookaheads for all but the last pass:
/^
(?=[^ …
2
votes
Convert > to HTML entity equivalent within HTML string
The trick is to capture everything that isn't the target, then plug it back in along with the changed text, like this:
Regex.Replace(str, @"\G((?>[^<>]+|<[^> …
0
votes
Matching rounds…
It's rarely if ever correct to use a reluctant quantifier as the last thing in a regex. In this regex:
/(Round\s+\d+)(.*?)/s
...the first thing the (.*?) …
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 …
0
votes
C# multiple string match
Are you really looking for substrings that are only two characters long? If so, searching a 20-million character string is going to be slow no matter what regex you use (or any non-regex technique …
2
votes
How do i write a Regular Expression to match text containing XYZ but not ABC?
No need for lookbehind:
^(?:(?!ABC).)*XYZ
…
4
votes
Improving/Fixing a Regex for C style block comments
Some problems I see with your regex:
There's no need for the |[\r\n] sequences in your regex; a negated character class like [^*] matches everything except '*', …
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: …
2
votes
Regex error c#?
I think you're mixing up .NET's regex syntax with PHP's. PHP requires you to use a regex delimiter in addition to the quotes that are required by the C# string literal. For instance, if you want …
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 …
2
votes
Matching a regex in html, ignoring spaces, and quotation marks
How much of that text is needed to uniquely identify the target? I would try this first:
@"(?is)<center>\s*This\s+page\s+has\s+been\s+visited.*?</center>"
…
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:
@"(& …
