Re: Regular expressions, PCRE [was: Relation(s) between/among Kate, Kwrite, and Katepart]

2025-04-21 Thread debian-user
Nicolas George wrote: > Tom Browder (HE12025-04-21): > > $ time raku -e ‘my $s = “a” x 25; my $r = “a?” x 25 ~ “a” x 25; > > if ($s ~= $r) { say “yes” } ‘ > > I almost asked if Raku uses pairs of Unicode quotes instead of the > symmetrical ASCII one; then I noticed the single quotes, and I

Re: Regular expressions, PCRE [was: Relation(s) between/among Kate, Kwrite, and Katepart]

2025-04-21 Thread Dan Ritter
Nicolas George wrote: > Tom Browder (HE12025-04-21): > > $ time raku -e ‘my $s = “a” x 25; my $r = “a?” x 25 ~ “a” x 25; if > > ($s ~= $r) { say “yes” } ‘ > > I almost asked if Raku uses pairs of Unicode quotes instead of the > symmetrical ASCII one; then I noticed the single quotes, and I kn

Re: Regular expressions, PCRE [was: Relation(s) between/among Kate, Kwrite, and Katepart]

2025-04-21 Thread Tom Browder
On Mon, Apr 21, 2025 at 09:20 Nicolas George wrote: > > Tom Browder (HE12025-04-21): > > $ time raku -e ‘my $s = “a” x 25; my $r = “a?” x 25 ~ “a” x 25; if > > ($s ~= $r) { say “yes” } ‘ > > I almost asked if Raku uses pairs of Unicode quotes instead of the > symmetrical ASCII one; then I noti

Re: Regular expressions, PCRE [was: Relation(s) between/among Kate, Kwrite, and Katepart]

2025-04-21 Thread tomas
On Mon, Apr 21, 2025 at 04:19:43PM +0200, Nicolas George wrote: > Tom Browder (HE12025-04-21): > > $ time raku -e ‘my $s = “a” x 25; my $r = “a?” x 25 ~ “a” x 25; if > > ($s ~= $r) { say “yes” } ‘ > > I almost asked if Raku uses pairs of Unicode quotes instead of the > symmetrical ASCII one; t

Re: Regular expressions, PCRE [was: Relation(s) between/among Kate, Kwrite, and Katepart]

2025-04-21 Thread Nicolas George
Tom Browder (HE12025-04-21): > $ time raku -e ‘my $s = “a” x 25; my $r = “a?” x 25 ~ “a” x 25; if > ($s ~= $r) { say “yes” } ‘ I almost asked if Raku uses pairs of Unicode quotes instead of the symmetrical ASCII one; then I noticed the single quotes, and I know the shell does not. > Raku’s re

Re: Regular expressions, PCRE [was: Relation(s) between/among Kate, Kwrite, and Katepart]

2025-04-21 Thread Tom Browder
On Mon, Apr 21, 2025 at 06:55 wrote: > On Mon, Apr 21, 2025 at 07:34:13AM -0400, Greg Wooledge wrote: > > On Mon, Apr 21, 2025 at 08:04:44 +0200, to...@tuxteam.de wrote: > > > [...] quite possibly Perl's engine has been refined (it definitely has > > > been extended) since then. > > [...] > > > It

Re: Regular expressions, PCRE [was: Relation(s) between/among Kate, Kwrite, and Katepart]

2025-04-21 Thread tomas
On Mon, Apr 21, 2025 at 07:34:13AM -0400, Greg Wooledge wrote: > On Mon, Apr 21, 2025 at 08:04:44 +0200, to...@tuxteam.de wrote: > > [...] quite possibly Perl's engine has been refined (it definitely has > > been extended) since then. [...] > It still has the issue. > > hobbit:~$ time perl -e '$

Re: Regular expressions, PCRE [was: Relation(s) between/among Kate, Kwrite, and Katepart]

2025-04-21 Thread Greg Wooledge
On Mon, Apr 21, 2025 at 08:04:44 +0200, to...@tuxteam.de wrote: > If you like to disappear in rabbit holes, this [3] one is nice. If > not, still the pic at the beginning still shows impressively an > exponential runaway for Perl's re engine compared to Tcl's which > uses a Thompson algorithm. Note

Re: regular expressions

2004-10-25 Thread Wayne Topa
Rui Silva([EMAIL PROTECTED]) is reported to have said: > Hi people > > can anyone point me to a website that teaches me how to build regular > expressions... i need it from a school work anda i'm finding anything on > google. only found site with one or examples, need a full (or wide) > descrip

Re: regular expressions

2004-10-25 Thread Gerard Robin
On Sun, Oct 24, 2004 at 04:09:57AM +0100, Rui Silva wrote: > Hi people > > can anyone point me to a website that teaches me how to build regular > expressions... i need it from a school work anda i'm finding anything on > google. only found site with one or examples, need a full (or wide) > des

Re: regular expressions

2004-10-23 Thread Rui Silva
On Sunday 24 October 2004 04:14, David Clymer wrote: > On Sat, 2004-10-23 at 23:09, Rui Silva wrote: > > Hi people > > > > can anyone point me to a website that teaches me how to build regular > > expressions... i need it from a school work anda i'm finding anything on > > google. only found site w

Re: regular expressions

2004-10-23 Thread David Clymer
On Sat, 2004-10-23 at 23:09, Rui Silva wrote: > Hi people > > can anyone point me to a website that teaches me how to build regular > expressions... i need it from a school work anda i'm finding anything on > google. only found site with one or examples, need a full (or wide) > description of r

Re: regular expressions

1998-03-27 Thread Art Lemasters
We are very fortunate, indeed, to have others teach us as you do. Here are some supplemental links. Regular Expressions http://lib.stat.cmu.edu/scgn/v52/section1_7_0_1.html Regular Expressions http://sunsite.auc.dk/frexxed/docs/FrexxEd_Sections/regular_expressions.HTML Thank you. Art Lemas

Re: regular expressions

1998-03-27 Thread Marc Lepage
lucier wrote: > > Howdy all.:-) > > During a chat with a linux developer, he mentioned that OS/2 (plus DOS and > Windows) didn't support "regular expressions". From what I have been able to > > gather from reading app docs (like the EPM INF file) , *nix ported to OS/2 > app > do

RE: regular expressions

1998-03-26 Thread TBaetzle
> E.L. Meijer wrote: > > 3) A couple of messages I ran across on DejaNews seemed to imply > that REXX > > supports regular expressions. Would this be an integrated function > of REXX or > > just indicative that a person could 'roll their own" with REXX? > > I wouldn't be surprised if they

Re: regular expressions

1998-03-26 Thread E.L. Meijer \(Eric\)
> > Howdy all.:-) > > During a chat with a linux developer, he mentioned that OS/2 (plus DOS and > Windows) didn't support "regular expressions". From what I have been able to > > gather from reading app docs (like the EPM INF file) , *nix ported to OS/2 > app > docs and sharewa