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
On Fri, 6 Oct 2006 15:15:52 +0100, Steve Swift steve.j.swift@gmail.com 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.
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 (?<!^)[EIOU] Target string UUUIIIYYYOOOEEE Replacement string A Result UAUAIAYYYAOAEAE
(?<!^)[EIOU] for me mean match any E I O U when not preceded by start of string
May be a bug or i missed something ?
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 (?<!^)[EIOU] Target string UUUIIIYYYOOOEEE Replacement string A Result UAUAIAYYYAOAEAE
(?<!^)[EIOU] for me mean 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@common-lisp.net http://common-lisp.net/mailman/listinfo/regex-coach
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 (?<!^)[EIOU] Target string UUUIIIYYYOOOEEE Replacement string A Result UAUAIAYYYAOAEAE
(?<!^)[EIOU] for me mean match any E I O U when not preceded by start of string
May be a bug or i missed something ?
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 (?<!^)[EIOU] Target string UUUIIIYYYOOOEEE Replacement string A Result UAUAIAYYYAOAEAE
(?<!^)[EIOU] for me mean match any E I O U when not preceded by start of string
May be a bug or i missed something ?
On Wed, 11 Oct 2006 12:15:49 +0200, Laurent TAUPIAC ltaupiac@lfdj.com wrote:
RegExp used to do that (?<!^)[EIOU] 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.