From Patrick.Krecker at asu.edu Mon Oct 2 18:25:17 2006 From: Patrick.Krecker at asu.edu (Patrick Krecker) Date: Mon, 2 Oct 2006 11:25:17 -0700 Subject: [regex-coach] small bug Message-ID: There's a small bug in the software with dual screen monitors. If you maximize the window on the secondary screen, then minimize it, it will fail to maximize again. The only option is to close and reopen the program. Patrick -------------- next part -------------- An HTML attachment was scrubbed... URL: From edi at agharta.de Tue Oct 3 22:32:07 2006 From: edi at agharta.de (Edi Weitz) Date: Wed, 04 Oct 2006 00:32:07 +0200 Subject: [regex-coach] small bug In-Reply-To: (Patrick Krecker's message of "Mon, 2 Oct 2006 11:25:17 -0700") References: Message-ID: On Mon, 2 Oct 2006 11:25:17 -0700, "Patrick Krecker" wrote: > There's a small bug in the software with dual screen monitors. If > you maximize the window on the secondary screen, then minimize it, > it will fail to maximize again. The only option is to close and > reopen the program. Thanks for the info. This is a problem of the underlying CAPI[1] toolkit that I can't change. The next release of Regex Coach will be based on the new LispWorks compiler (version 5.0) and if you're lucky, this'll solve your problem. Keep your fingers crossed... :) Cheers, Edi. [1] From steve.j.swift at gmail.com Fri Oct 6 14:15:52 2006 From: steve.j.swift at gmail.com (Steve Swift) Date: Fri, 6 Oct 2006 15:15:52 +0100 Subject: [regex-coach] Font support Message-ID: <000001c6e951$f6d6c190$da9aa409@IBM4ADGB085204> Would it be possible to add support for different fonts/sizes In the Regular expression and Target String boxes? If full font/size/decoration is asking too much, then a simple bold/normal choice would keep me happy - I just don't like bold text. Steve Swift http://www.swiftys.org.uk From edi at agharta.de Sat Oct 7 00:25:20 2006 From: edi at agharta.de (Edi Weitz) Date: Sat, 07 Oct 2006 02:25:20 +0200 Subject: [regex-coach] Font support In-Reply-To: <000001c6e951$f6d6c190$da9aa409@IBM4ADGB085204> (Steve Swift's message of "Fri, 6 Oct 2006 15:15:52 +0100") References: <000001c6e951$f6d6c190$da9aa409@IBM4ADGB085204> Message-ID: On Fri, 6 Oct 2006 15:15:52 +0100, Steve Swift wrote: > Would it be possible to add support for different fonts/sizes In the > Regular expression and Target String boxes? I might add that in a future version, but ATM I don't know when that will be. > If full font/size/decoration is asking too much, then a simple > bold/normal choice would keep me happy - I just don't like bold > text. It's not bold - it's just how the font looks like... Cheers, Edi. From ltaupiac at lfdj.com Wed Oct 11 10:15:49 2006 From: ltaupiac at lfdj.com (Laurent TAUPIAC) Date: Wed, 11 Oct 2006 12:15:49 +0200 Subject: [regex-coach] Negative look behind assertion pb In-Reply-To: References: <000001c6e951$f6d6c190$da9aa409@IBM4ADGB085204> Message-ID: <452CC455.9030706@lfdj.com> The goal. Replace all vowels but Y and but first car with a A Eg For target string UUUIIIYYYOOOEEE Result expected UAAAAAYYYAAAAAA In regexpCoach RegExp used to do that (? References: <000001c6e951$f6d6c190$da9aa409@IBM4ADGB085204> <452CC455.9030706@lfdj.com> Message-ID: <452CD06E.3060901@lfdj.com> i got expected result too when using preg_replace of php 5.1.6 Steve Swift a ?crit : > I got the expected result when using the Regular Expression capability > of my editor, EditPadPro, so this looks like a bug to me. > > On 11/10/06, *Laurent TAUPIAC * > wrote: > > > > The goal. Replace all vowels but Y and but first car with a A > Eg > For target string > UUUIIIYYYOOOEEE > Result expected > UAAAAAYYYAAAAAA > > > In regexpCoach > > RegExp used to do that > (? Target string > UUUIIIYYYOOOEEE > Replacement string > A > Result > UAUAIAYYYAOAEAE > > -- > Steve Swift > http://www.swiftys.org.uk -- --------------------------------------------------------------------- Sorry, This disclamer is auto added by FW's company --------------------------------------------------------------------- Si vous n'etes pas destinataires de ce message, merci d'avertir l'expediteur de l'erreur de distribution et de le detruire immediatement. Ce message contient des informations confidentielles ou appartenant a La Francaise des Jeux. Il est etabli a l'intention exclusive de ses destinataires. Toute divulgation, utilisation, diffusion ou reproduction (totale ou partielle) de ce message ou des informations qu'il contient, doit etre prealablement autorisee. Tout message electronique est susceptible d'alteration et son integrite ne peut etre assuree. La Francaise des Jeux decline toute responsabilite au titre de ce message s'il a ete modifie ou falsifie. If you are not the intended recipient of this e-mail, please notify the sender of the wrong delivery and delete it immediately from your system. This e-mail contains confidential information or information belonging to La Francaise des Jeux and is intended solely for the addressees. The unauthorised disclosure, use, dissemination or copying (either whole or partial) of this e-mail, or any information it contains, is prohibited. E-mails are susceptible to alteration and their integrity cannot be guaranteed. La Francaise des Jeux shall not be liable for this e-mail if modified or falsified. From johnjc-regex at publicinfo.net Wed Oct 11 14:20:03 2006 From: johnjc-regex at publicinfo.net (John Clements) Date: Wed, 11 Oct 2006 15:20:03 +0100 Subject: [regex-coach] Negative look behind assertion pb In-Reply-To: <452CC455.9030706@lfdj.com> References: <000001c6e951$f6d6c190$da9aa409@IBM4ADGB085204> <452CC455.9030706@lfdj.com> Message-ID: <6.2.5.6.2.20061011151011.05e28388@publicinfo.net> I get the expected result in Regex Coach 0.6.7 : UAAAAAYYYAAAAAA I just copy/pasted the values you gave into Regex Coach and ticked "g". At 11:15 11/10/2006, you wrote: >The goal. Replace all vowels but Y and but first car with a A >Eg >For target string >UUUIIIYYYOOOEEE >Result expected >UAAAAAYYYAAAAAA > > >In regexpCoach > >RegExp used to do that >(?Target string >UUUIIIYYYOOOEEE >Replacement string >A >Result >UAUAIAYYYAOAEAE > > >(?match any E I O U when not preceded by start of string > > >May be a bug or i missed something ? > > > >-- > > > > > > > >--------------------------------------------------------------------- >Sorry, This disclamer is auto added by FW's company >--------------------------------------------------------------------- > > > > > > > > > > > > > > > > > > > > > > > > > > > >Si vous n'etes pas destinataires de ce message, merci d'avertir >l'expediteur de l'erreur de distribution et de le detruire immediatement. >Ce message contient des informations confidentielles ou appartenant >a La Francaise des Jeux. Il est etabli a l'intention exclusive de >ses destinataires. Toute divulgation, utilisation, diffusion ou >reproduction (totale ou partielle) de ce message ou des informations >qu'il contient, doit etre prealablement autorisee. >Tout message electronique est susceptible d'alteration et son >integrite ne peut etre assuree. La Francaise des Jeux decline toute >responsabilite au titre de ce message s'il a ete modifie ou falsifie. > >If you are not the intended recipient of this e-mail, please notify >the sender of the wrong delivery and delete it immediately from your system. >This e-mail contains confidential information or information >belonging to La Francaise des Jeux and is intended solely for the >addressees. The unauthorised disclosure, use, dissemination or >copying (either whole or partial) of this e-mail, or any information >it contains, is prohibited. >E-mails are susceptible to alteration and their integrity cannot be >guaranteed. La Francaise des Jeux shall not be liable for this >e-mail if modified or falsified. >_______________________________________________ >regex-coach site list >regex-coach at common-lisp.net >http://common-lisp.net/mailman/listinfo/regex-coach From ltaupiac at lfdj.com Wed Oct 11 14:47:53 2006 From: ltaupiac at lfdj.com (Laurent TAUPIAC) Date: Wed, 11 Oct 2006 16:47:53 +0200 Subject: [regex-coach] Negative look behind assertion pb In-Reply-To: <6.2.5.6.2.20061011151011.05e28388@publicinfo.net> References: <000001c6e951$f6d6c190$da9aa409@IBM4ADGB085204> <452CC455.9030706@lfdj.com> <6.2.5.6.2.20061011151011.05e28388@publicinfo.net> Message-ID: <452D0419.3030609@lfdj.com> i have the pb with 0.8.5. John Clements a ?crit : > > I get the expected result in Regex Coach 0.6.7 : > UAAAAAYYYAAAAAA > > I just copy/pasted the values you gave into Regex Coach and ticked "g". > > > At 11:15 11/10/2006, you wrote: > >> The goal. Replace all vowels but Y and but first car with a A >> Eg >> For target string >> UUUIIIYYYOOOEEE >> Result expected >> UAAAAAYYYAAAAAA >> >> >> In regexpCoach >> >> RegExp used to do that >> (?> Target string >> UUUIIIYYYOOOEEE >> Replacement string >> A >> Result >> UAUAIAYYYAOAEAE >> >> >> (?> match any E I O U when not preceded by start of string >> >> >> May be a bug or i missed something ? >> >> > -- --------------------------------------------------------------------- Sorry, This disclamer is auto added by FW's company --------------------------------------------------------------------- Si vous n'etes pas destinataires de ce message, merci d'avertir l'expediteur de l'erreur de distribution et de le detruire immediatement. Ce message contient des informations confidentielles ou appartenant a La Francaise des Jeux. Il est etabli a l'intention exclusive de ses destinataires. Toute divulgation, utilisation, diffusion ou reproduction (totale ou partielle) de ce message ou des informations qu'il contient, doit etre prealablement autorisee. Tout message electronique est susceptible d'alteration et son integrite ne peut etre assuree. La Francaise des Jeux decline toute responsabilite au titre de ce message s'il a ete modifie ou falsifie. If you are not the intended recipient of this e-mail, please notify the sender of the wrong delivery and delete it immediately from your system. This e-mail contains confidential information or information belonging to La Francaise des Jeux and is intended solely for the addressees. The unauthorised disclosure, use, dissemination or copying (either whole or partial) of this e-mail, or any information it contains, is prohibited. E-mails are susceptible to alteration and their integrity cannot be guaranteed. La Francaise des Jeux shall not be liable for this e-mail if modified or falsified. From edi at agharta.de Thu Oct 12 08:41:30 2006 From: edi at agharta.de (Edi Weitz) Date: Thu, 12 Oct 2006 10:41:30 +0200 Subject: [regex-coach] New version 0.9.0 (Was: Negative look behind assertion pb) In-Reply-To: <452CC455.9030706@lfdj.com> (Laurent TAUPIAC's message of "Wed, 11 Oct 2006 12:15:49 +0200") References: <000001c6e951$f6d6c190$da9aa409@IBM4ADGB085204> <452CC455.9030706@lfdj.com> Message-ID: On Wed, 11 Oct 2006 12:15:49 +0200, Laurent TAUPIAC wrote: > RegExp used to do that > (? Target string > UUUIIIYYYOOOEEE > Replacement string > A > Result > UAUAIAYYYAOAEAE That was a bug, yes. Thanks for the report. Should be fixed in the new 0.9.0 release. Please, everyone, READ the NEW installation instructions before you install 0.9.0! Thanks, Edi. From johnjc-regex at publicinfo.net Thu Oct 12 16:33:42 2006 From: johnjc-regex at publicinfo.net (John Clements) Date: Thu, 12 Oct 2006 17:33:42 +0100 Subject: [regex-coach] 0.9.0 fails in xp pro sp2 Message-ID: <6.2.5.6.2.20061012172439.04cf2e10@publicinfo.net> Hi, I uninstalled by trusty Regex Coach 0.6.7 and installed 0.9.0 on Windows XP Pro SP 2. Everything seemed fine until I finished with "run regex coach" ticked. It says it failed in CreateProcess on The Regex Coach.exe with error number 14001. Trying it later from the icon gets a message that it failed because the application configuration is incorrect. I have re-uninstalled, reinstalled, re-downloaded and then back again and it's always the same. Anybody else have that problem? I'm on a Dell notebook. Cheers From philip.sharman at gmail.com Thu Oct 12 16:40:07 2006 From: philip.sharman at gmail.com (Philip Sharman) Date: Thu, 12 Oct 2006 10:40:07 -0600 Subject: [regex-coach] 0.9.0 fails in xp pro sp2 In-Reply-To: <6.2.5.6.2.20061012172439.04cf2e10@publicinfo.net> Message-ID: <000601c6ee1d$14fee830$55aa6f90@ads.autodesk.com> It does work for me on my Windows XP Pro SP 2, but I did need to download the msvcr80.dll from the link provided on http://weitz.de/regex-coach/#install. Wish I could help! -----Original Message----- From: regex-coach-bounces at common-lisp.net [mailto:regex-coach-bounces at common-lisp.net] On Behalf Of John Clements Sent: Thursday, October 12, 2006 10:34 AM To: Edi at common-lisp.net; "Weitz (John Clements's message of "Thu, 12 Oct 2006 17:33:42 +0100") References: <6.2.5.6.2.20061012172439.04cf2e10@publicinfo.net> Message-ID: On Thu, 12 Oct 2006 17:33:42 +0100, John Clements wrote: > I uninstalled by trusty Regex Coach 0.6.7 and installed 0.9.0 on > Windows XP Pro SP 2. Everything seemed fine until I finished with > "run regex coach" ticked. It says it failed in CreateProcess on The > Regex Coach.exe with error number 14001. Trying it later from the > icon gets a message that it failed because the application > configuration is incorrect. I have re-uninstalled, reinstalled, > re-downloaded and then back again and it's always the same. Did you read and follow the installation instructions? http://www.weitz.de/regex-coach/#msvcr From johnjc-regex at publicinfo.net Thu Oct 12 17:14:07 2006 From: johnjc-regex at publicinfo.net (John Clements) Date: Thu, 12 Oct 2006 18:14:07 +0100 Subject: [regex-coach] 0.9.0 fails in xp pro sp2 In-Reply-To: <000601c6ee1d$14fee830$55aa6f90@ads.autodesk.com> References: <6.2.5.6.2.20061012172439.04cf2e10@publicinfo.net> <000601c6ee1d$14fee830$55aa6f90@ads.autodesk.com> Message-ID: <6.2.5.6.2.20061012181302.04e1abb8@publicinfo.net> Sorry guys. I thought I had it installed but I was thinking about another machine. Thank you very much! At 17:40 12/10/2006, you wrote: >It does work for me on my Windows XP Pro SP 2, but I did need to download >the msvcr80.dll from the link provided on >http://weitz.de/regex-coach/#install. > >Wish I could help! > >-----Original Message----- >From: regex-coach-bounces at common-lisp.net >[mailto:regex-coach-bounces at common-lisp.net] On Behalf Of John Clements >Sent: Thursday, October 12, 2006 10:34 AM >To: Edi at common-lisp.net; "Weitz Cc: regex-coach at common-lisp.net >Subject: [regex-coach] 0.9.0 fails in xp pro sp2 > >Hi, > >I uninstalled by trusty Regex Coach 0.6.7 and installed 0.9.0 on >Windows XP Pro SP 2. Everything seemed fine until I finished with >"run regex coach" ticked. It says it failed in CreateProcess on The >Regex Coach.exe with error number 14001. Trying it later from the >icon gets a message that it failed because the application >configuration is incorrect. I have re-uninstalled, reinstalled, >re-downloaded and then back again and it's always the same. > >Anybody else have that problem? I'm on a Dell notebook. > >Cheers > >_______________________________________________ >regex-coach site list >regex-coach at common-lisp.net >http://common-lisp.net/mailman/listinfo/regex-coach From ltaupiac at lfdj.com Fri Oct 13 06:44:58 2006 From: ltaupiac at lfdj.com (Laurent TAUPIAC) Date: Fri, 13 Oct 2006 08:44:58 +0200 Subject: [regex-coach] Negative look behind assertion pb In-Reply-To: <452D0419.3030609@lfdj.com> References: <000001c6e951$f6d6c190$da9aa409@IBM4ADGB085204> <452CC455.9030706@lfdj.com> <6.2.5.6.2.20061011151011.05e28388@publicinfo.net> <452D0419.3030609@lfdj.com> Message-ID: <452F35EA.502@lfdj.com> This bug is solved by upgrade to 0.9.0 version Laurent TAUPIAC a ?crit : > > > i have the pb with 0.8.5. > > John Clements a ?crit : >> >> I get the expected result in Regex Coach 0.6.7 : >> UAAAAAYYYAAAAAA >> >> I just copy/pasted the values you gave into Regex Coach and ticked "g". >> >> >> At 11:15 11/10/2006, you wrote: >> >>> The goal. Replace all vowels but Y and but first car with a A >>> Eg >>> For target string >>> UUUIIIYYYOOOEEE >>> Result expected >>> UAAAAAYYYAAAAAA >>> >>> >>> In regexpCoach >>> >>> RegExp used to do that >>> (?>> Target string >>> UUUIIIYYYOOOEEE >>> Replacement string >>> A >>> Result >>> UAUAIAYYYAOAEAE >>> >>> >>> (?>> match any E I O U when not preceded by start of string >>> >>> >>> May be a bug or i missed something ? >>> >>> >> > > -- --------------------------------------------------------------------- Sorry, This disclamer is auto added by FW's company --------------------------------------------------------------------- Si vous n'etes pas destinataires de ce message, merci d'avertir l'expediteur de l'erreur de distribution et de le detruire immediatement. Ce message contient des informations confidentielles ou appartenant a La Francaise des Jeux. Il est etabli a l'intention exclusive de ses destinataires. Toute divulgation, utilisation, diffusion ou reproduction (totale ou partielle) de ce message ou des informations qu'il contient, doit etre prealablement autorisee. Tout message electronique est susceptible d'alteration et son integrite ne peut etre assuree. La Francaise des Jeux decline toute responsabilite au titre de ce message s'il a ete modifie ou falsifie. If you are not the intended recipient of this e-mail, please notify the sender of the wrong delivery and delete it immediately from your system. This e-mail contains confidential information or information belonging to La Francaise des Jeux and is intended solely for the addressees. The unauthorised disclosure, use, dissemination or copying (either whole or partial) of this e-mail, or any information it contains, is prohibited. E-mails are susceptible to alteration and their integrity cannot be guaranteed. La Francaise des Jeux shall not be liable for this e-mail if modified or falsified. From torokze at gmail.com Thu Oct 26 14:53:41 2006 From: torokze at gmail.com (=?UTF-8?Q?Zolt=C3=A1n_T=C3=B6r=C3=B6k?=) Date: Thu, 26 Oct 2006 16:53:41 +0200 Subject: [regex-coach] Feature Request Message-ID: <20f5444f0610260753t3b3e065dn62d14d6e3b4c49fd@mail.gmail.com> Hello, Is it possible to put more than 10 selection radi button on the Control page. It would be great because I usually have quite complex regex's and they produces more than 10 selections. Cheers, Zolt?n -------------- next part -------------- An HTML attachment was scrubbed... URL: From edi at agharta.de Thu Oct 26 18:27:34 2006 From: edi at agharta.de (Edi Weitz) Date: Thu, 26 Oct 2006 20:27:34 +0200 Subject: [regex-coach] Feature Request In-Reply-To: <20f5444f0610260753t3b3e065dn62d14d6e3b4c49fd@mail.gmail.com> =?iso-8859-1?q?=28Zolt=E1n_T=F6r=F6k's?= message of "Thu, 26 Oct 2006 16:53:41 +0200") References: <20f5444f0610260753t3b3e065dn62d14d6e3b4c49fd@mail.gmail.com> Message-ID: On Thu, 26 Oct 2006 16:53:41 +0200, "Zolt?n T?r?k" wrote: > Is it possible to put more than 10 selection radi button on the > Control page. It would be great because I usually have quite > complex regex's and they produces more than 10 selections. I don't think I will do that. However, I'm asking myself if you really need more than ten /capturing/ register groups. Wouldn't non-capturing groups also do the trick? They're have better performance as well. Cheers, Edi.