Search Results

0
votes

RegExp problem

It would help if we knew what language or tool you're using; there's a great deal of variation in syntax, semantics, and capabilities. Here's one way to do it in Java: String str = …
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 …
2
votes

Regex for HTML attribute replacement/addition

The trick is to match every complete "attribute=value" pair, but capture only the ones whose attribute name isn't "name". Then plug in your own "name" attribute along with all the capture …
0
votes

Regular expression to remove duplicate attributes in html or xml.

Here's a one-pass solution I came up with a while back in Java. First I do a lookahead at the beginning of an attribute=value sequence and capture the attribute name. Then I do a lookbehind to se …
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

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

Variable order regex syntax

You can create a lookahead for each of the attributes and plug them into a regex for the whole tag. For example, the regex for the tag could be <a\b[^<>]*> …
1
vote

Matching text in HTML without contents of the tag

/span(?=[^>]*<)/ In other words, looking ahead from the end of the word "span" there is no closing angle bracket before the next opening angle bracket, so we can't b …
2
votes

Replacing HTML attributes using a regex in PHP

PHP is unique among the major languages in that, although regexes are specified in the form of string literals like in Python, Java and C#, you also have to use regex delimiters like in Perl, JavaS …
1
vote

Using C# regular expressions to remove HTML tags

The question is too broad to be answered definitively. Are you talking about removing all tags from a real-world HTML document, like a web page? If so, you would have to: remove the …
0
votes

Regex to select all image html tags conditionally on the src value

<img(?:\s+(?:(?!class\b)\w+="[^"]*"|class="(?!Pretty)[^"]*"))*/> That seems to answer your question, but there are many details you didn't address, like: …
1
vote

Help with a regex that strips out leading white space.

Here's how I would do it: $str = preg_replace( '~^[ \t]++(?=(?:[^<]++|<(?!/?+pre\b))*+(?:\z|<pre\b))~im', '', $str); After matching some line-lead …
0
votes

PHP and regular expressions: how to get the character count of all characters in a string containing HTML, but measuring only 20 visible words?

Here's a reasonably good regex for matching the first twenty visible words: '~^(?:\s*+(?:(?:[^<>\s]++|</?\w[^<>]*+>)++)){1,20}~' This matches one …