1

(我正在使用 Lua 5.2 和 LPeg 0.12)

假设我有一个模式P可以产生一些不确定数量的捕获(如果有的话),并且我想编写一个模式Q来捕获P以及之后P位置 -- 但要在. 本质上,如果结果为,那么我想要结果为。Plpeg.match(P * lpeg.Cp(), str, i)v1, v2, ..., jlpeg.match(Q, str, i)j, v1, v2, ...

P这是否可以在每次匹配时都不必创建新表来实现?

大多数情况下,我想这样做是为了简化一些产生迭代器的函数。Lua 的无状态迭代器函数只获取一个控制变量,它需要是迭代器函数返回的第一个值。

在一个允许人们命名可变参数函数的最后一个参数的世界中,我可以这样写:

function pos_then_captures(pattern)
    local function roll(..., pos)
        return pos, (...)
    end
    return (pattern * lpeg.Cp()) / roll
end

唉。简单的解决方案是明智地使用lpeg.Ct()

function pos_then_captures(pattern)
    -- exchange the order of two values and unpack the first parameter
    local function exch(a, b)
        return b, unpack(a)
    end
    return (lpeg.Ct(pattern) * lpeg.Cp()) / exch
end

或让来电者进行lpeg.match打包/删除/插入/解包舞蹈。尽管后者听起来很恶心,但我可能会这样做,因为lpeg.Ct()可能会对pos_then_captures.

每次pattern成功匹配时,其中任何一个都会创建一个新表,诚然这在我的应用程序中并不重要,但是有没有办法在没有任何打包解包魔法的情况下做到这一点?

我对 Lua 的内部不太熟悉,但感觉我真正想做的是从 Lua 的堆栈中弹出一些东西并将其放回其他地方,这似乎不是一个直接或有效的操作支持,但也许 LPeg 在这种特定情况下可以做的事情。

4

2 回答 2

1

比赛时间捕获和升值可以完成工作。此功能用于Cmt确保pos在将其粘贴到pattern's captures 之前进行设置pattern / prepend

Cmt = lpeg.Cmt
Cp  = lpeg.Cp

function prepend_final_pos(pattern)
    -- Upvalues are dynamic, so this variable belongs to a
    -- new environment for each call to prepend_final_pos.
    local pos

    -- lpeg.Cmt(patt, func) passes the entire text being
    -- searched to `function` as the first parameter, then
    -- any captures. Ignore the first parameter.
    local function setpos(_, x)
      pos = x

      -- If we return nothing, Cmt will fail every time
      return true
    end

    -- Keep the varargs safe!
    local function prepend(...)
      return pos, ...
    end

    -- The `/ 0` in `Cmt(etc etc) / 0` is to get rid of that
    -- captured `true` that we picked up from setpos.
    return (pattern / prepend) * (Cmt(Cp(), setpos) / 0)
end

示例会话:

> bar = lpeg.C "bar"
> Pbar = prepend_final_pos(bar)
> print(lpeg.match(Pbar, "foobarzok", 4))
7       bar
> foo = lpeg.C "foo" / "zokzokzok"
> Pfoobar = prepend_final_pos(foo * bar)
> print(lpeg.match(Pfoobar, "foobarzok"))
7       zokzokzok       bar

正如预期的那样,实际捕获对新模式返回的位置没有影响;只有与原始模式匹配的文本长度。

于 2015-07-02T02:34:05.240 回答
0

您可以使用没有表捕获或匹配时间捕获的原始解决方案来做到这一点

function pos_then_captures(pattern)
    local function exch(a1, a2, a3, a4, a5, a6, a7, a8, a9, a10, ...)
        if a1 == nil then return end
        if a2 == nil then return a1 end
        if a3 == nil then return a2, a1 end
        if a4 == nil then return a3, a1, a2 end
        if a5 == nil then return a4, a1, a2, a3 end
        if a6 == nil then return a5, a1, a2, a3, a4 end
        if a7 == nil then return a6, a1, a2, a3, a4, a5 end
        if a8 == nil then return a7, a1, a2, a3, a4, a5, a6 end
        if a9 == nil then return a8, a1, a2, a3, a4, a5, a6, a7 end
        if a10 == nil then return a9, a1, a2, a3, a4, a5, a6, a7, a8 end
        local t = { a10, ... }
        return t[#t], a1, a2, a3, a4, a5, a6, a7, a8, a9, unpack(t, 1, #t-1)
    end
    return (pattern * lpeg.Cp()) / exch
end

以下示例用法返回每个匹配的“a”,并在其前面加上匹配的结尾

local p = lpeg.P{ (pos_then_captures(lpeg.C'a') + 1) * lpeg.V(1) + -1 }
print(p:match('abababcd'))

-- output: 2       a       4       a       6       a
于 2015-12-27T15:56:23.967 回答