Warning: session_start(): open(/tmp/sess_tskm91joqgvoul309jmiepn1d7, O_RDWR) failed: No space left on device (28) in /www/H01/htdocs/lib/base/lib_base.php on line 280
QRegExp-Editor openDesktop.org
-
 KDE-Apps.org Applications for the KDE-Desktop 
 GTK-Apps.org Applications using the GTK Toolkit 
 GnomeFiles.org Applications for GNOME 
 MeeGo-Central.org Applications for MeeGo 
 CLI-Apps.org Command Line Applications 
 Qt-Apps.org Free Qt Applications 
 Qt-Prop.org Proprietary Qt Applications 
 Maemo-Apps.org Applications for the Maemo Plattform 
 Java-Apps.org Free Java Applications 
 eyeOS-Apps.org Free eyeOS Applications 
 Wine-Apps.org Wine Applications 
 Server-Apps.org Server Applications 
 apps.ownCloud.com ownCloud Applications 
--
-
 KDE-Look.org Artwork for the KDE-Desktop 
 GNOME-Look.org Artwork for the GNOME-Desktop 
 Xfce-Look.org Artwork for the Xfce-Desktop 
 Box-Look.org Artwork for your Windowmanager 
 E17-Stuff.org Artwork for Enlightenment 
 Beryl-Themes.org Artwork for the Beryl Windowmanager 
 Compiz-Themes.org Artwork for the Compiz Windowmanager 
 EDE-Look.org Themes for your EDE Desktop 
--
-
 Debian-Art.org Stuff for Debian 
 Gentoo-Art.org Artwork for Gentoo Linux 
 SUSE-Art.org Artwork for openSUSE 
 Ubuntu-Art.org Artwork for Ubuntu 
 Kubuntu-Art.org Artwork for Kubuntu 
 LinuxMint-Art.org Artwork for Linux Mint 
 Arch-Stuff.org Art And Stuff for Arch Linux 
 Frugalware-Art.org Themes for Frugalware 
 Fedora-Art.org Artwork for Fedora Linux 
 Mandriva-Art.org Artwork for Mandriva Linux 
--
-
 KDE-Files.org Files for KDE Applications 
 OpenTemplate.org Documents for OpenOffice.org
 GIMPStuff.org Files for GIMP
 InkscapeStuff.org Files for Inkscape
 ScribusStuff.org Files for Scribus
 BlenderStuff.org Textures and Objects for Blender
 VLC-Addons.org Themes and Extensions for VLC
--
-
 KDE-Help.org Support for your KDE Desktop 
 GNOME-Help.org Support for your GNOME Desktop 
 Xfce-Help.org Support for your Xfce Desktop 
--
openDesktop.orgopenDesktop.org:   Applications   Artwork   Linux Distributions   Documents    Linux42.org    OpenSkillz.com   
 
Home
Apps
Artwork
News
Groups
Knowledge
Events
Forum
People
Jobs
Register
Login


-
- Content .- Fans (3) .- Knowledge Base  . 

QRegExp-Editor

   v0.2.1  

Qt Development Tool

Score 64%
QRegExp-Editor
zoom


QRegExp-Editor
zoom


QRegExp-Editor
zoom


Homepage:  Link
Downloads:  1153
Submitted:  Apr 28 2010
Updated:  Mar 21 2012

Description:

This is a simple application to test QRegExps. It shows you the captured strings and their respective substrings.

You find the latest stable version of QRegExp-Editor on our project page at http://sourceforge.net/projects/qregexp-editor. Bug-reports and feature requests should be made there. The repository is hosted on gitorious: http://gitorious.org/qregexp-editor/qregexp-editor.




LicenseGPL
Source(Source Archive)
Donate
Send to a friend
Subscribe
Other  Content  from momesana
Report inappropriate content



goto page:  1  2 

-

 Just a feedback

 
 by lyuts on: May 17 2010
 
Score 50%

Your app is very nice, but i just found the way to make it freeze. Looks like that any regex with '?' freezes the application totally.

Beside that, good job.


Reply to this

-

 Need more info on the crash

 
 by momesana on: May 17 2010
 
Score 50%

Hi,
thanks for the feedback. Unfortunately you didn't provide enough information for me to reproduce the crash. I've just tested this text:
5.3cm 422inch 76 89.3
21.256 3.4CM

98756456789756746574897456465465.45676MM
8.4?

against this regexp:
(\d+(\.\d+)?)(cm|inch|mm)?(?:\?)?

but this didn't result in a crash even though there are plenty of ? signs in there. Here is the result: http://img17.imageshack.us/img17/223/regexpeditor.jpg

It would be very kind if you provided one or two use-cases where the application crashes on your system (that is the regexp and the parsed text) so I can verify that bug and hopefully debug the app.

Thanks in advance


n the world I see, you're stalking elk throught the grand canyon forests, around the ruins of the rockefeller center. You'll wear leather clothes, that will last you the rest of your life... (Tylers V
Reply to this

-

 crash

 
 by momesana on: May 18 2010
 
Score 50%

Hi,
first of all thanks for reporting the bug. The crash is due to your regexp matching the empty string, so a regular expression like [te]? would lead to an infinite loop since it will match 1 or _zero_ occurrences of t or e. Here is a minimal compiling example showing that:

#include <QtCore>
#include <QDebug>

int main()
{
QRegExp rx("[te]?");
QString text("text");
int pos = 0;
int loopCnt = 0;
while((pos = rx.indexIn(text, pos)) != -1) {
Q_ASSERT(loopCnt++ < 10);
qDebug() << "pos:" << pos << " cap(0):" << rx.cap(0) << " len:" << rx.matchedLength();
pos += rx.matchedLength();
}
}

Of course this shouldn't crash this application so I fixed that bug. Now if you happen to match the empty string the application will abort evaluating the regexp and display a warning to make you aware of that.


n the world I see, you're stalking elk throught the grand canyon forests, around the ruins of the rockefeller center. You'll wear leather clothes, that will last you the rest of your life... (Tylers V
Reply to this

-

 [BUG] No values, only colors

 
 by lpereira on: Jun 8 2010
 
Score 50%

I'm using the latest git revision.
Using this data:
5.3cm 422inch 76 89.3
21.256 3.4CM

98756456789756746574897456465465.45676MM
8.4?

against this regexp:
(\d+(\.\d+)?)(cm|inch|mm)?(?:\?)?

I got this result:
http://img251.imageshack.us/img251/1020/qregexpeditornoresults.png

no values. clicking on the colored rows doesn't produce any effects.

There is a development mailing list ?

Regards,


--
Luís Pereira


Reply to this

-

 Re: [BUG] No values, only colors

 
 by lpereira on: Jun 9 2010
 
Score 50%

Wrote a patch.
Placed an merge request at gitorious


--
Luís Pereira
http://kcheckgmail-lpereira.blogspot.com/

Reply to this

-

 [BUG] No values, only colors

 
 by lpereira on: Jun 8 2010
 
Score 50%

I'm using the latest git revision.
Using this data:
5.3cm 422inch 76 89.3
21.256 3.4CM

98756456789756746574897456465465.45676MM
8.4?

against this regexp:
(\d+(\.\d+)?)(cm|inch|mm)?(?:\?)?

I got this result:
http://img251.imageshack.us/img251/1020/qregexpeditornoresults.png

no values. clicking on the colored rows doesn't produce any effects.

There is a development mailing list ?

Regards,


--
Luís Pereira


Reply to this

-

 Re: [BUG] No values, only colors

 
 by lpereira on: Jun 8 2010
 
Score 50%

An F5
Please delete this. If possible


--
Luís Pereira
http://kcheckgmail-lpereira.blogspot.com/

Reply to this

-

 Re: [BUG] No values, only colors

 
 by momesana on: Jun 9 2010
 
Score 50%

Hi,
unfortunately there is no mailing list since I didn't expect any feedback.

Regarding the issue, I couldn't reproduce it (which does not mean that there is no issue) so it would be kind if you tell me which version of Qt you are using.

I'll change the code and add qDebug() instructions so the matches can be written to the console. That would give us some useful hints as to where to find the bug.

I'll also send you a private message with my email address and messenger ID's so we can debug this together if you like :-).

Best regards
- Mehdi Salem Naraghi.


n the world I see, you're stalking elk throught the grand canyon forests, around the ruins of the rockefeller center. You'll wear leather clothes, that will last you the rest of your life... (Tylers V
Reply to this

-

 Same Problem here

 
 by emrecio on: Jul 26 2010
 
Score 50%

The libraries which are linked into the application when I compile it are:
expat-2.0.1-8.fc12.i686
fontconfig-2.8.0-1.fc12.i686
freetype-2.3.11-3.fc12.i686
glib2-2.22.5-1.fc12.i686
glibc-2.11.2-1.i686
libgcc-4.4.4-10.fc12.i686
libICE-1.0.6-1.fc12.i686
libpng-1.2.44-1.fc12.i686
libSM-1.1.0-7.fc12.i686
libstdc++-4.4.4-10.fc12.i686
libuuid-2.16.2-9.fc12.i686
libX11-1.3-1.fc12.i686
libXau-1.0.5-1.fc12.i686
libxcb-1.5-1.fc12.i686
libXcursor-1.1.10-1.fc12.i686
libXext-1.1-2.fc12.i686
libXfixes-4.0.4-1.fc12.i686
libXi-1.3-2.fc12.i686
libXinerama-1.1-1.fc12.i686
libXrandr-1.3.0-5.fc12.i686
libXrender-0.9.5-1.fc12.i686
qt-4.6.3-8.fc12.i686
qt-x11-4.6.3-8.fc12.i686
zlib-1.2.3-23.fc12.i686


Reply to this

-

 Re: Same Problem here

 
 by lpereira on: Jul 27 2010
 
Score 50%

I don't understant your post.
Please elaborate.

Regards,


--
Luís Pereira

Reply to this

goto page:  1  2 

Add commentBack




-



 
 
 Who we are
Contact
More about us
Frequently Asked Questions
Register
Twitter
Blog
Explore
Apps
Artwork
Jobs
Knowledge
Events
People
Updates on identi.ca
Updates on Twitter
Content RSS   
Events RSS   

Participate
Groups
Forum
Add Content
Public API
About openDesktop.org
Legal Notice
Spreadshirt Shop
CafePress Shop
Advertising
Sponsor us
Report Abuse
 

Copyright 2007-2016 openDesktop.org Team  
All rights reserved. openDesktop.org is not liable for any content or goods on this site.
All contributors are responsible for the lawfulness of their uploads.
openDesktop is a trademark of the openDesktop.org Team