我想运行以下代码,但第二个测试失败
! Argument of \@secondoftwo has an extra }.
我错过了什么?
\documentclass{article}
\usepackage{xstring,ifthen}
\newcommand{\mytest}[1]{%
\newcommand{\s}{\StrChar{#1}{3}}
\newcommand{\x}{c}
3rd charactor of input is: \s ~equal to \x \\
1st test: \IfStrEq{\x}{c}{true}{false} \\
2nd test: \IfStrEq{\s}{c}{true}{false}
}
\begin{document}
\mytest{abcd}
\end{document}
任何帮助表示感谢,谢谢,Malte
答案1
你不是\s
要成为第三个角色,而是要成为印刷第三个字符。
使用更好的xstring
功能:
\documentclass{article}
\usepackage{xstring}
\newcommand{\mytest}[1]{%
\StrChar{#1}{3}[\maltetest]%
Third charactor of input is: \maltetest\ equals c\\
Test: \IfStrEq{\maltetest}{c}{true}{false}%
}
\begin{document}
\mytest{abcd}
\end{document}
这样\maltetest
就会准确包含输入字符串的第三个字符。