[9fans] regexp doubt

2010-07-13 Thread hugo rivera
Hi, can someone tell me why the regular expression /stat[abc]?[ ;\-]/ doesn't match the string "stat-" in acme? I expect it to match, where does my mistake lie? Saludos, -- Hugo

Re: [9fans] regexp doubt

2010-07-13 Thread Vinu Rajashekhar
On Tue, Jul 13, 2010 at 8:26 PM, hugo rivera wrote: > Hi, > can someone tell me why the regular expression /stat[abc]?[ ;\-]/ > doesn't match the string "stat-" in acme? I expect it to match, where > does my mistake lie? > Saludos, > > It's the [abc]? I guess, it says that you want an a, b, or c

Re: [9fans] regexp doubt

2010-07-13 Thread hugo rivera
2010/7/13 Vinu Rajashekhar : > > On Tue, Jul 13, 2010 at 8:26 PM, hugo rivera wrote: > It's the [abc]? I guess, it says that you want an a, b, or c after stat. not really, since there's a '?' REP operator there. And it actually matches strings like "stat;" -- Hugo

Re: [9fans] regexp doubt

2010-07-13 Thread Rodolfo (kix)
Can you try: /stat[abc]?[ ;\\-]/ I am not sure (and I do not have acme here), but probably the problem is with the backslash. You can try this too: /stat[abc]?[ ;-]/ Saludos. On Tue, Jul 13, 2010 at 5:01 PM, Vinu Rajashekhar wrote: > > On Tue, Jul 13, 2010 at 8:26 PM, hugo rivera wrote: >>

Re: [9fans] regexp doubt

2010-07-13 Thread erik quanstrom
On Tue Jul 13 11:13:03 EDT 2010, uai...@gmail.com wrote: > Hi, > can someone tell me why the regular expression /stat[abc]?[ ;\-]/ > doesn't match the string "stat-" in acme? I expect it to match, where > does my mistake lie? > Saludos, if you are doing a b3 search, you want :/stat[abc]?[

Re: [9fans] regexp doubt

2010-07-13 Thread hugo rivera
I wasn't searching, but using it with acme's x command. 2010/7/13 erik quanstrom : > On Tue Jul 13 11:13:03 EDT 2010, uai...@gmail.com wrote: >> Hi, >> can someone tell me why the regular expression /stat[abc]?[ ;\-]/ >> doesn't match the string "stat-" in acme? I expect it to match, where >> does

Re: [9fans] regexp doubt

2010-07-13 Thread hugo rivera
both of them yield a regexp: malformed `[]' error. I forgot to mention and I had an alternative solution from the beginning /stat[abc]?([ ;]|-)/ I'm just wondering the reason the original version failed. 2010/7/13 Rodolfo (kix) : > Can you try: > > /stat[abc]?[ ;\\-]/ > > I am not sure (and I do

Re: [9fans] regexp doubt

2010-07-13 Thread blstuart
> both of them yield a > > regexp: malformed `[]' > > error. > I forgot to mention and I had an alternative solution from the > beginning /stat[abc]?([ ;]|-)/ > I'm just wondering the reason the original version failed. As I recall, if you're going to include a hyphen in a character class, it ha

Re: [9fans] regexp doubt

2010-07-13 Thread hugo rivera
maybe I'm using a buggy version of acme, because /stat[abc]?[- ;]/ also fails with a "malformed" error. And according to the regexp(7) man page, you should be able to precede a '-' with a backslash. 2010/7/13 : >> both of them yield a >> >> regexp: malformed `[]' >> >> error. >> I forgot to ment

Re: [9fans] regexp doubt

2010-07-13 Thread yy
2010/7/13 hugo rivera : > Hi, > can someone tell me why the regular expression /stat[abc]?[ ;\-]/ > doesn't match the string "stat-" in acme? I expect it to match, where > does my mistake lie? > Saludos, > > -- > Hugo > > It works here (both with B3 searches and Edit ,x commands). Maybe what you h

Re: [9fans] regexp doubt

2010-07-13 Thread Ethan Grammatikidis
On 13 Jul 2010, at 16:37, blstu...@bellsouth.net wrote: both of them yield a regexp: malformed `[]' error. I forgot to mention and I had an alternative solution from the beginning /stat[abc]?([ ;]|-)/ I'm just wondering the reason the original version failed. As I recall, if you're going to

Re: [9fans] regexp doubt

2010-07-13 Thread erik quanstrom
> I wasn't searching, but using it with acme's x command. > > > if you are doing a b3 search, you want > > > >        :/stat[abc]?[ ;\-]/ > > > > just the leading : is missing. this works for me on a buffer of "stat-\n\n\n\n" (where \ns are newlines): Edit ,x/stat[abc]?[ ;\-]/p > As I r

Re: [9fans] regexp doubt

2010-07-13 Thread Russ Cox
I think you have found a real bug. I created a new window containing x x+ x- xy and I executed Edit ,x/x[ +\-]/d and sure enough it doesn't delete x-. Russ

Re: [9fans] regexp doubt

2010-07-13 Thread blstuart
> I think you have found a real bug. > > I created a new window containing > >x x+ x- xy > > and I executed Edit ,x/x[ +\-]/d > and sure enough it doesn't delete x-. Interesting. Is that in p9p acme? I just tried it in 9vx and it did delete everything except the xy. BLS

Re: [9fans] regexp doubt

2010-07-13 Thread erik quanstrom
On Tue Jul 13 14:40:02 EDT 2010, r...@swtch.com wrote: > I think you have found a real bug. > > I created a new window containing > >x x+ x- xy > > and I executed Edit ,x/x[ +\-]/d > and sure enough it doesn't delete x-. this really does work for me at coraid, but not at home. the only diff

Re: [9fans] regexp doubt

2010-07-13 Thread erik quanstrom
the problem is that OPERATOR, and nextrec() now collide with legit runes. - erik

Re: [9fans] regexp doubt

2010-07-13 Thread erik quanstrom
patch: /n/dump/2010/0713/sys/src/cmd/acme/regx.c:20,26 - regx.c:20,26 typedef struct Inst Inst; struct Inst { - uinttype; /* < 0x1 ==> literal, otherwise action */ + uinttype; /* < 0x100 ==> literal, otherwise action */ union { int sid;