我有以下 LaTeX 命令:
\autocites[][]{}[][]{}
里面的参数[]
是可选的,里面的其他参数{}
是强制性的。该\autocites
命令可以通过其他参数组进行扩展,例如:
\autocites[a1][a2]{a3}[b1][b2]{b3}
\autocites[a1][a2]{a3}[b1][b2]{b3}[c1][c2]{c3}
...
它也可以这样使用:
\autocites{a}{b}
\autocites{a}[b1][]{b3}
\autocites{a}[][b2]{b3}
...
我想通过在 PHP 中使用正则表达式来提取它的参数。这是我的第一次尝试:
/\\autocites(\[(.*?)\])(\[(.*?)\])(\{(.*?)\})(\[(.*?)\])(\[(.*?)\])(\{(.*?)\})/
虽然如果\autocites
只包含两组三个参数,这可以正常工作,但我无法弄清楚如何让它适用于未知数量的参数。
我还尝试使用以下表达式:
/\\autocites((\[(.*?)\]\[(.*?)\])?\{(.*?)\}){2,}/
这次我可以匹配更多的参数,但是我无法提取所有值,因为 PHP 总是只给我最后三个参数的内容:
Array
(
[0] => Array
(
[0] => \autocites[a][b]{c}[d][e]{f}[a][a]{a}
)
[1] => Array
(
[0] => [a][a]{a}
)
[2] => Array
(
[0] => [a][a]
)
[3] => Array
(
[0] => a
)
[4] => Array
(
[0] => a
)
[5] => Array
(
[0] => a
)
)
任何帮助是极大的赞赏。