如何使用 l3regex 匹配括号 [ 和 ]?

如何使用 l3regex 匹配括号 [ 和 ]?

我想用 修补一些命令\regex_replace_all:nnN,但是我无法匹配括号[和,]因为它们作为正则表达式具有其他含义。

考虑以下示例,我希望从中删除\begin{tabular}[t]{c}\@maketitle(这里我用来.匹配括号,这很危险,因为它可能会击中其他字符)

\documentclass{article}

\begin{document}

\makeatletter
\meaning\@maketitle

\ExplSyntaxOn

\regex_replace_all:nnN { \c{begin}\{tabular\} .t. \{c\} } {} \@maketitle

\ExplSyntaxOff

\bigskip

\meaning\@maketitle
\makeatother

\end{document}

相关内容