|
Hi Japa,Many thanks for your comments, which is so clear.Would you give me more commnents on code scripts below?1)assert(m.match(m.Cs((##m.P("a") * 1 + m.P(1)/".")^0), "aloal") == "a..a.")
2)assert(m.match(m.Cs((#((#m.P"a")/"") * 1 + m.P(1)/".")^0), "aloal") == "a..a.")
3)assert(m.match(m.Cs((- -m.P("a") * 1 + m.P(1)/".")^0), "aloal") == "a..a.")
4)assert(m.match(m.Cs((-((-m.P"a")/"") * 1 + m.P(1)/".")^0), "aloal") == "a..a.")For the above four statements 1)2)3)4), I was not able to understand them completely.- Regarding 1), why need consecutive token '#'?- Regarding 2), I think sub-pattern ((#m.P"a")/"") should be enough for match, why need token '#' before it?- Regarding 3), be confused with sub-pattern '- -m.P("a")', especially for two tokens '-'.- Regarding 4), similar as 3)Thanks again.
在2010-03-11 03:33:05,Japa <greatjapa@gmail.com> 写道:
Each m.C is a single capture in LPeg. If you have nested captures, their values are returned after this one. The pseudocode below shows the order of captures, I named the first capture m.C as C1, second capture m.C as C2 and so on.
C1( C2('a') * C3( C4('b') * C5( C6('c') * C7( ) ) ) )
C1 -> abc
C2 -> a
C3 -> bc
C4 -> b
C5 -> c
C6 -> c
C7 -> ""
To understand the second example you just need to do the same thing.2010/3/10 leeya <leeyacn@126.com>I read test.lua script from lpeg-0.9 and had a little confusion to code snippet below:t = {m.match({[1] = m.C(m.C(1) * m.V(1) + -1)}, "abc")}
checkeq(t, {"abc", "a", "bc", "b", "c", "c", ""})Who could give me some comments of above code? Why the output is {"abc", "a", "bc", "b", "c", "c", ""} sequence?The same question was given as following too,t = m.match(m.Ct(m.C(m.C(1) * 1 * m.C(1))), "alo")
checkeq(t, {"alo", "a", "o"})Thanks a lot.
--
Marcelo Oikawa