r3wp [groups: 83 posts: 189283]
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

World: r3wp

[Parse] Discussion of PARSE dialect

Rebolek
8-Jun-2007
[1926]
forall replacement not...an experiment in using parse for maybe not 
obvious purposes - yes :)
Volker
8-Jun-2007
[1927x2]
You could make something new. like this:
 parall [p: set x integer! set y integer!] [?? p ?? x ?? y]
parall [p: set x integer! set y integer!]  DATA [?? p ?? x ?? y] 
;..
Oldes
10-Jun-2007
[1929]
To be able escape from infinite loops use () somewhere in the parse 
rules as for example:

 >> parse "abc" [any [()]]
 *** YOU CAN PRESS [ESC] NOW TO STOP THE LOOP ***

>> parse "abc" [any []]
*** HANGS REBOL ***
BrianH
11-Jun-2007
[1930]
Cool!
PeterWood
11-Jun-2007
[1931]
Oldes: does using () inside a parse loop slow things down? I'm wary 
of () as they do seem to slow the interpreter down in many cases.
Rebolek
11-Jun-2007
[1932]
Peter it does slow interpreter down, it's better to use this trick 
when designing your rules. If you're happy with them, remove the 
parens to make your rule faster.
Steeve
27-Jun-2007
[1933x3]
What about a new word “all” which would allow  to parse several successives 
conditions whatever their order  ?
parse [a: 1 b: 2] [all ['a: integer! | 'b: integer!]] would be true 
only if it exists successivly [a: integer!] and [b: integer! ] whatever 
their order
need it
btiffin
27-Jun-2007
[1936]
Umm...I'm not really a parser but


parse [a: 1 b: 2] [set-word! integer! set-word! integer!] returns 
true.
Steeve
27-Jun-2007
[1937x5]
yeah but what ? if the entry is [b:2 a:  1] instead
hum sorry, it works too
but if the entry is more complex like [a: 1 huge tight  b: 1] and 
that i want parse all this values in any order ?
and in your example , you don't test that we must encounter 'a and 
'b
i give another one example , more simple

i want to parse the serie "ABC" but it could be the serie "BCA" , 
"CBA" , "ACB" ... any combination

so if i could write parse "ABC" [all ["A" | "B" [ "C" ]]  , it should 
be more simple
btiffin
27-Jun-2007
[1942]
Again, I'm not a parser, but parse's support of alternates with some 
and any covers these cases no?
Steeve
27-Jun-2007
[1943x2]
no
if you write  parse "AB" [some ["A" |  "B" | "C"]]
btiffin
27-Jun-2007
[1945]
parse "ABC" [ 0 1 "A" | 0 1 "B" | 0 1 "C"] ?
Steeve
27-Jun-2007
[1946]
you get a true answer, but that not the case
btiffin
27-Jun-2007
[1947x2]
I think I'm clue'in to what you mean.  I'll leave this to the pros... 
 :)
like my use of 0 1 can be opt...  :)
Steeve
27-Jun-2007
[1949x2]
anyway, you're example just don't work ^^
*anyway your example just doesn't work (fewwww)
btiffin
27-Jun-2007
[1951]
Yep.  I'm out.  Not experienced enough to have piped up...  ;)
Steeve
27-Jun-2007
[1952x2]
and what is your mater ? ;-)
we can talk of rebcode if you want :-)
btiffin
27-Jun-2007
[1954]
Thinking about this one, you'd have to repeat all the alternatives. 
 Defeating the purpose...but I'll bet Chris or Geomol or Anton or... 
will have a workable solution posted before ya know it.
Steeve
27-Jun-2007
[1955]
i h'ave many alternatives (all comsuming lot of code)  that's not 
the point, i just think it could be more elegant to have such a command
btiffin
27-Jun-2007
[1956]
Maybe we could hold side bets on which rebol will come up with the 
solution first...I'd put money down on Oldes or Volker giving you 
a workable  :)
Steeve
27-Jun-2007
[1957]
if you say so, i  tried many alternatives, but they are all uggly
Brock
27-Jun-2007
[1958]
try this... parse "AB" [some ["A" |  "B" | "C"] | none 
]
Steeve
27-Jun-2007
[1959]
i don't want to parse "AB" but any combinations of "ABC"
btiffin
27-Jun-2007
[1960]
His works.  I tried it without the terminating  | none  and it spun 
out, so I didn't mention it  :)
Steeve
27-Jun-2007
[1961x2]
parse "AB" sould return false
not true
Brock
27-Jun-2007
[1963x2]
why would AB return false?
so it must be three characters?
Steeve
27-Jun-2007
[1965x2]
because i want parse the complete serie "ABC" in any combination
yes 3 characters
btiffin
27-Jun-2007
[1967]
What it you put 1 repeats inside the some?
Steeve
27-Jun-2007
[1968]
write it plz
btiffin
27-Jun-2007
[1969]
nevermind...  just tried it.   piping up out of turn again  :)
Steeve
27-Jun-2007
[1970x2]
i just don't understand what you mean
ah ok, it doesn't work :-)
Brock
27-Jun-2007
[1972]
do all three characters need to be present?
btiffin
27-Jun-2007
[1973]
I tried  parse "AB" [some [1 "A" | 1 "B" | 1 "C"] | none]   ...returns 
true
Brock
27-Jun-2007
[1974]
or can characters be duplicated?
Steeve
27-Jun-2007
[1975]
no Brock