473,471 Members | 1,729 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Regex help please

Hi

Can anyone help me match this div below - my regex does not work - if
you could tell me why I would appreciate it.

var aStr = "<div class='feedflare'>dfgdg dg</div>";
var reg = new RegExp("<div class='feedflare'.*?</div>'","gim");
thanks
Tim
Aug 25 '08 #1
8 1437
pr
Tim Nash (aka TMN) wrote:
Can anyone help me match this div below - my regex does not work - if
you could tell me why I would appreciate it.

var aStr = "<div class='feedflare'>dfgdg dg</div>";
var reg = new RegExp("<div class='feedflare'.*?</div>'","gim");
-------------------------------------------------------^
That apostrophe shouldn't be there.

The 'm' flag is unnecessary.
Aug 25 '08 #2
After a fresh start this morning I got this to work taking into
account white spaces around 'class' and '=' etc and also
al/ow ' or " to be used

var reg = new RegExp("<div[^>]class\\s*=\
\s*[\'\"]feedflare[\'\"]*>(.*?)</div>", 'gi');

Tim
Aug 26 '08 #3
Tim Nash (aka TMN) wrote:
After a fresh start this morning I got this to work taking into
account white spaces around 'class' and '=' etc and also
al/ow ' or " to be used

var reg = new RegExp("<div[^>]class\\s*=\
\s*[\'\"]feedflare[\'\"]*>(.*?)</div>", 'gi');
Single-escaping the apostrophe within a double-quoted string literal is
useless ("\'" == "'"), and attr=['"]...['"]* is pointless (the star repeats
the previous expression zero or more times; here: ['"]). It would also be a
lot easier to maintain if you used a RegExp literal instead.

var reg = /<div[^>]class\s*=\s*['"]feedflare['"]>(.*?)<\/div>/gi;

That still does not exclude the possibility of e.g.

<divaclass="feedflare'>...</div>

which is not Valid. As for the element type identifier followed by optional
attributes, you should use

<ident(|\s+attr...)>

because whitespace after the identifier is required if there are attributes.
As for the matching quotes, you should use

('foo'|"foo")

However, RegExp literals and non-greedy matching (`.*?') are not universally
supported, with the latter being the more important fact here. See also:

<http://pointedears.de/scripts/es-matrix/>

Also note that a single regular expression cannot be used to parse an
*arbitrary* fragment of an SGML-based markup language; either it is too
greedy or not greedy enough. For example, in

<div class="foo"><div>bar</div></div>

this non-greedy expression would match `<div class="foo"><div>bar</div>'.
with the outer `div' element not being closed.

So, for reliable parsing, you will need to implement a push-down automaton;
however, its parsing algorithm can be made more efficient with regular
expressions.

Unsurprisingly, all this has been discussed here before. Please search
before you post.

<http://jibbering.com/faq/>
PointedEars
--
Use any version of Microsoft Frontpage to create your site.
(This won't prevent people from viewing your source, but no one
will want to steal it.)
-- from <http://www.vortex-webdesign.com/help/hidesource.htm>
Aug 26 '08 #4
pr
Tim Nash (aka TMN) wrote:
After a fresh start this morning I got this to work taking into
account white spaces around 'class' and '=' etc and also
al/ow ' or " to be used

var reg = new RegExp("<div[^>]class\\s*=\
\s*[\'\"]feedflare[\'\"]*>(.*?)</div>", 'gi');
To match a string starting with any of the following common permutations:

<div class="feedflare">
<div style="color: red;" class="feedflare">
<div class="feedflare" id="div1">
<div class="class1 feedflare class3">

you will instead need something like:

/<div\b[^>]+\bclass\s*=\s*(['"])[\w\s]*\bfeedflare\b[\w\s]*\1[^>]*>(.*?)<\/div\s*>/gi

I have simplified it by presuming you won't use the characters '.-:' in
class names. But as PointedEars points out, '.*?' is a problem in old
browsers and you're in trouble if there's a nested div in your string.

Possibly you would be better served by reading the string into the DOM
(using a DOMParser or innerHTML, for e.g.) and extracting information
from it there.
Aug 26 '08 #5
Thank you PointedEars and pr for your input.

Tim

pr wrote:
Tim Nash (aka TMN) wrote:
After a fresh start this morning I got this to work taking into
account white spaces around 'class' and '=' etc and also
al/ow ' or " to be used

var reg = new RegExp("<div[^>]class\\s*=\
\s*[\'\"]feedflare[\'\"]*>(.*?)</div>", 'gi');

To match a string starting with any of the following common permutations:

<div class="feedflare">
<div style="color: red;" class="feedflare">
<div class="feedflare" id="div1">
<div class="class1 feedflare class3">

you will instead need something like:

/<div\b[^>]+\bclass\s*=\s*(['"])[\w\s]*\bfeedflare\b[\w\s]*\1[^>]*>(.*?)<\/div\s*>/gi

I have simplified it by presuming you won't use the characters '.-:' in
class names. But as PointedEars points out, '.*?' is a problem in old
browsers and you're in trouble if there's a nested div in your string.

Possibly you would be better served by reading the string into the DOM
(using a DOMParser or innerHTML, for e.g.) and extracting information
from it there.
Aug 26 '08 #6
pr
Thomas 'PointedEars' Lahn wrote:
As for the matching quotes, you should use

('foo'|"foo")
Or

(['"])foo\1
>
However, RegExp literals and non-greedy matching (`.*?') are not universally
supported, with the latter being the more important fact here.
Does this seem a reasonable feature test to you?

var ngq = /.+?/.exec("ab");
var hasNonGreedyQuantifiers = ngq && ngq[0].length == 1;

I can only lay hands on one browser old enough to fail. I assume the
presence of literal notation, obviously.
Aug 26 '08 #7
pr wrote:
Thomas 'PointedEars' Lahn wrote:
> As for the matching quotes, you should use

('foo'|"foo")

Or

(['"])foo\1
Correct. To my surprise, this feature, standardized only with ECMAScript
Ed. 3 (like regular expressions in general), appears to be widely supported:

The bookmarklet

javascript:window.alert(/^(["'])a\1b$/.test("'a'b"));

shows `true' in all my test environments, which currently are:

- Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.0.1)
Gecko/2008070208 Firefox/3.0.1
- Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.14)
Gecko/20080404 Firefox/2.0.0.14
- Mozilla/4.78 [de] (Windows NT 5.0; U)

- Mozilla/5.0 (Windows; U; Windows NT 5.1; de-DE)
AppleWebKit/525.19 (KHTML, like Gecko) Version/3.1.2 Safari/525.21
- Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10_4_11; de-de)
AppleWebKit/525.18 (KHTML, like Gecko) Version/3.1.2 Safari/525.22

- Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; {...};
.NET CLR 1.1.4322; .NET CLR 2.0.50727) (IE 8 beta 1)
- Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; {...};
.NET CLR 1.1.4322; .NET CLR 2.0.50727)
- Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; {...};
.NET CLR 1.1.4322; .NET CLR 2.0.50727)
- Mozilla/4.0 (compatible; MSIE 5.5; Windows NT 5.1; {...};
.NET CLR 1.1.4322; .NET CLR 2.0.50727)
- Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0;
.NET CLR 1.1.4322; .NET CLR 2.0.50727)
- Mozilla/4.0 (compatible; MSIE 4.01; Windows NT 5.0; {...})

- Opera/9.52 (Windows NT 5.1; U; de)
- Opera/9.51 (Windows NT 5.1; U; de)
- Opera/9.27 (Windows NT 5.1; U; en)
- Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; en) Opera 8.0
- Mozilla/4.0 (compatible; MSIE 6.0; MSIE 5.5; Windows NT 5.1)
Opera 7.02 [en]
>However, RegExp literals and non-greedy matching (`.*?') are not universally
supported, with the latter being the more important fact here.

Does this seem a reasonable feature test to you?

var ngq = /.+?/.exec("ab");
var hasNonGreedyQuantifiers = ngq && ngq[0].length == 1;
No, it could already throw a (non-catchable) SyntaxError when /.+?/ is
parsed, before execution (you can test that with IE 5.0, for example). And
I have yet to devise a bullet-proof test for possibly unsupported syntax (a
more sophisticated application of eval() comes to mind), one that does not
break the ECMAScript program then.

However,

var ngq = null;

try
{
ngq = new RegExp(".+?");
}
catch (e)
{
}

if (nqg)
{
// ...
}

would work for script engines that support basic exception handling but not
non-greedy quantifiers (such as JScript 5.1 in IE 5.01; tested positive).
PointedEars
--
Use any version of Microsoft Frontpage to create your site.
(This won't prevent people from viewing your source, but no one
will want to steal it.)
-- from <http://www.vortex-webdesign.com/help/hidesource.htm>
Aug 26 '08 #8
pr
Thomas 'PointedEars' Lahn wrote:
pr wrote:
>Does this seem a reasonable feature test to you?

var ngq = /.+?/.exec("ab");
var hasNonGreedyQuantifiers = ngq && ngq[0].length == 1;

No, it could already throw a (non-catchable) SyntaxError when /.+?/ is
parsed, before execution (you can test that with IE 5.0, for example).
You're right. IE 5 reports "Unexpected quantifier".
Aug 27 '08 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: aevans1108 | last post by:
expanding this message to microsoft.public.dotnet.xml Greetings Please direct me to the right group if this is an inappropriate place to post this question. Thanks. I want to format a...
6
by: Dave | last post by:
I'm struggling with something that should be fairly simple. I just don't know the regext syntax very well, unfortunately. I'd like to parse words out of what is basically a boolean search...
5
by: Greg Collins [InfoPath MVP] | last post by:
I couldn't find anything in my searches... I'm wondering if there's a Regex (with or without additional C# code) that can convert a either "lowerCamelCase" or "UpperCamelCase" into a proper "Title...
17
by: clintonG | last post by:
I'm using an .aspx tool I found at but as nice as the interface is I think I need to consider using others. Some can generate C# I understand. Your preferences please... <%= Clinton Gallagher ...
9
by: jmchadha | last post by:
I have got the following html: "something in html ... etc.. city1... etc... <a class="font1" href="city1.html" onclick="etc."click for <b>info</bon city1 </a> ... some html. city1.. can repeat...
10
by: igor.kulkin | last post by:
I have a small utility program written in Python which works pretty slow so I've decided to implement it in C. I did some benchmarking of Python's code performance. One of the parts of the program...
4
by: Henrik Dahl | last post by:
Hello! In my application I have a need for using a regular expression now and then. Often the same regular expression must be used multiple times. For performance reasons I use the...
7
by: Nightcrawler | last post by:
Hi all, I am trying to use regular expressions to parse out mp3 titles into three different groups (artist, title and remix). I currently have three ways to name a mp3 file: Artist - Title ...
6
by: Phil Barber | last post by:
I am using Regex to validate a file name. I have everything I need except I would like the dot(.) in the filename only to appear once. My question is it possible to allow one instance of character...
4
by: seberino | last post by:
I'm looking over the docs for the re module and can't find how to "NOT" an entire regex. For example..... How make regex that means "contains regex#1 but NOT regex#2" ? Chris
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.